javacommons/fileutils/javasrc/com/nokia/mj/impl/fileutils/FileUtililityErrorStrings.java
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 13 Oct 2010 14:23:59 +0300
branchRCL_3
changeset 83 26b2b12093af
parent 19 04becd199f91
permissions -rw-r--r--
Revision: v2.2.17 Kit: 201041

/*
* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/

package com.nokia.mj.impl.fileutils;

interface FileUtilityErrorStrings
{
    public static String TARGET_POINTS_TO_DIRECTORY = "Path specified is a directory";

    public static String TARGET_POINTS_TO_FILE = "Path specified specified is a file";

    public static String TARGET_DOES_NOT_EXIST = "Path specified does not exist";

    public static String UNABLE_TO_CREATE_FILE = "Unable to create file";

    public static String TEMP_DIR_NOT_PRESENT = "Directory to create temp file does not exist";

    public static String SOURCE_NOT_PRESENT = "Source not present";

    public static String SOURCE_NOT_DIRECTORY = "Source not a directory";

    public static String SOURCE_NOT_FILE = "Source not a file";

    public static String DESTINATION_IS_DIRECTORY = "Destination is a directory";

    public static String DESTINATION_ALREADY_PRESENT = "Destination already present";
}