mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-19 06:55:23 +02:00
[cleanup] fix copyright year 2007
This commit is contained in:
parent
6765a7d6ff
commit
a3b7c18be9
52 changed files with 442 additions and 393 deletions
|
@ -1,5 +1,5 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Copyright (c) 2000, 2006 IBM Corporation and others.
|
# Copyright (c) 2000, 2007 IBM Corporation and others.
|
||||||
# All rights reserved. This program and the accompanying materials
|
# All rights reserved. This program and the accompanying materials
|
||||||
# are made available under the terms of the Eclipse Public License v1.0
|
# are made available under the terms of the Eclipse Public License v1.0
|
||||||
# which accompanies this distribution, and is available at
|
# which accompanies this distribution, and is available at
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.core;
|
package org.eclipse.rse.internal.subsystems.files.core;
|
||||||
|
|
||||||
|
@ -68,4 +69,4 @@ public abstract class AbstractLanguageUtility implements ILanguageUtility {
|
||||||
public String getLanguage() {
|
public String getLanguage() {
|
||||||
return language;
|
return language;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.core;
|
package org.eclipse.rse.internal.subsystems.files.core;
|
||||||
|
|
||||||
|
@ -57,4 +58,4 @@ public abstract class AbstractLanguageUtilityFactory implements ILanguageUtility
|
||||||
* @see IJavaLanguageUtility
|
* @see IJavaLanguageUtility
|
||||||
*/
|
*/
|
||||||
public abstract ILanguageUtility getUtility(String language);
|
public abstract ILanguageUtility getUtility(String language);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.core;
|
package org.eclipse.rse.internal.subsystems.files.core;
|
||||||
|
|
||||||
|
@ -52,4 +53,4 @@ public interface ILanguageUtility {
|
||||||
* @return the language.
|
* @return the language.
|
||||||
*/
|
*/
|
||||||
public String getLanguage();
|
public String getLanguage();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.core;
|
package org.eclipse.rse.internal.subsystems.files.core;
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.core;
|
package org.eclipse.rse.internal.subsystems.files.core;
|
||||||
import org.eclipse.rse.core.model.IHost;
|
import org.eclipse.rse.core.model.IHost;
|
||||||
|
@ -182,4 +183,4 @@ public class SystemFileAPIProviderImpl
|
||||||
}
|
}
|
||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core;
|
package org.eclipse.rse.subsystems.files.core;
|
||||||
|
|
||||||
|
@ -67,4 +68,4 @@ public class Activator extends AbstractUIPlugin {
|
||||||
public static ImageDescriptor getImageDescriptor(String path) {
|
public static ImageDescriptor getImageDescriptor(String path) {
|
||||||
return AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.rse.subsystems.files.core", path); //$NON-NLS-1$
|
return AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.rse.subsystems.files.core", path); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core;
|
package org.eclipse.rse.subsystems.files.core;
|
||||||
|
|
||||||
|
@ -42,4 +43,4 @@ public interface ILanguageUtilityFactory {
|
||||||
* @see ILanguageUtility
|
* @see ILanguageUtility
|
||||||
*/
|
*/
|
||||||
public ILanguageUtility getUtility(String language);
|
public ILanguageUtility getUtility(String language);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core;
|
package org.eclipse.rse.subsystems.files.core;
|
||||||
|
|
||||||
|
@ -189,4 +190,4 @@ public class SystemFileResources extends NLS
|
||||||
// load message values from bundle file
|
// load message values from bundle file
|
||||||
NLS.initializeMessages(BUNDLE_NAME, SystemFileResources.class);
|
NLS.initializeMessages(BUNDLE_NAME, SystemFileResources.class);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
################################################################################
|
###############################################################################
|
||||||
# Copyright (c) 2000, 2006 IBM Corporation. All rights reserved.
|
# Copyright (c) 2000, 2007 IBM Corporation and others.
|
||||||
# This program and the accompanying materials are made available under the terms
|
# All rights reserved. This program and the accompanying materials
|
||||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
# are made available under the terms of the Eclipse Public License v1.0
|
||||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
# which accompanies this distribution, and is available at
|
||||||
#
|
# http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
#
|
||||||
# Initial Contributors:
|
# Initial Contributors:
|
||||||
# The following IBM employees contributed to the Remote System Explorer
|
# The following IBM employees contributed to the Remote System Explorer
|
||||||
# component that contains this file: David McKnight, Kushal Munir,
|
# component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
#
|
#
|
||||||
# Contributors:
|
# Contributors:
|
||||||
# {Name} (company) - description of contribution.
|
# {Name} (company) - description of contribution.
|
||||||
################################################################################
|
###############################################################################
|
||||||
|
|
||||||
# NLS_MESSAGEFORMAT_VAR
|
# NLS_MESSAGEFORMAT_VAR
|
||||||
# NLS_ENCODING=UTF-8
|
# NLS_ENCODING=UTF-8
|
||||||
|
@ -221,4 +222,4 @@ RESID_JOB_SEARCH_NAME=Search
|
||||||
RESID_JOB_DECORATEFILES_NAME=Decorate Files
|
RESID_JOB_DECORATEFILES_NAME=Decorate Files
|
||||||
|
|
||||||
RESID_FTP_CONNECTORSERVICE_NAME=FTP Connector Service
|
RESID_FTP_CONNECTORSERVICE_NAME=FTP Connector Service
|
||||||
RESID_FTP_CONNECTORSERVICE_DESCRIPTION=The FTP Connector Service uses the FTP protocol to connect to a remote host. You must have an FTP daemon running on the host.
|
RESID_FTP_CONNECTORSERVICE_DESCRIPTION=The FTP Connector Service uses the FTP protocol to connect to a remote host. You must have an FTP daemon running on the host.
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2000, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2000, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.model;
|
package org.eclipse.rse.subsystems.files.core.model;
|
||||||
/**
|
/**
|
||||||
|
@ -63,4 +64,4 @@ public interface ISystemFileRemoteTypes
|
||||||
*/
|
*/
|
||||||
public static final String SUBTYPE_ROOT = "root"; //$NON-NLS-1$
|
public static final String SUBTYPE_ROOT = "root"; //$NON-NLS-1$
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.model;
|
package org.eclipse.rse.subsystems.files.core.model;
|
||||||
|
|
||||||
|
@ -95,4 +96,4 @@ public interface ISystemFileTransferModeRegistry extends ISystemFileTypes
|
||||||
// Query whether a file should be treated as text
|
// Query whether a file should be treated as text
|
||||||
public boolean isText(IFile file);
|
public boolean isText(IFile file);
|
||||||
public boolean isText(IRemoteFile remoteFile);
|
public boolean isText(IRemoteFile remoteFile);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.model;
|
package org.eclipse.rse.subsystems.files.core.model;
|
||||||
import java.util.StringTokenizer;
|
import java.util.StringTokenizer;
|
||||||
|
@ -399,4 +400,4 @@ public class RemoteFileFilterString implements Cloneable
|
||||||
}
|
}
|
||||||
return copy;
|
return copy;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.model;
|
package org.eclipse.rse.subsystems.files.core.model;
|
||||||
|
|
||||||
|
@ -240,4 +241,4 @@ public class RemotePath implements IRemotePath {
|
||||||
|
|
||||||
return remoteFile;
|
return remoteFile;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.model;
|
package org.eclipse.rse.subsystems.files.core.model;
|
||||||
|
|
||||||
|
@ -132,4 +133,4 @@ public class RemotePathUtil {
|
||||||
return path.append(absolutePath);
|
return path.append(absolutePath);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.model;
|
package org.eclipse.rse.subsystems.files.core.model;
|
||||||
|
|
||||||
|
@ -141,4 +142,4 @@ public class SystemFileTransferModeMapping
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.model;
|
package org.eclipse.rse.subsystems.files.core.model;
|
||||||
|
|
||||||
|
@ -579,4 +580,4 @@ public class SystemFileTransferModeRegistry
|
||||||
private String getFileLocation() {
|
private String getFileLocation() {
|
||||||
return plugin.getStateLocation().append(FILENAME).toOSString();
|
return plugin.getStateLocation().append(FILENAME).toOSString();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.servicesubsystem;
|
package org.eclipse.rse.subsystems.files.core.servicesubsystem;
|
||||||
|
|
||||||
|
@ -196,4 +197,4 @@ public abstract class AbstractRemoteFile extends RemoteFile implements IRemoteFi
|
||||||
return _hostFile;
|
return _hostFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation and others. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -14,7 +15,7 @@
|
||||||
* Martin Oberhuber (Wind River) - Fix 158534 - NPE in upload/download after conflict
|
* Martin Oberhuber (Wind River) - Fix 158534 - NPE in upload/download after conflict
|
||||||
* Martin Oberhuber (Wind River) - Fix 162962 - recursive removeCachedRemoteFile()
|
* Martin Oberhuber (Wind River) - Fix 162962 - recursive removeCachedRemoteFile()
|
||||||
* Martin Oberhuber (Wind River) - [168596] FileServiceSubSystem.isCaseSensitive()
|
* Martin Oberhuber (Wind River) - [168596] FileServiceSubSystem.isCaseSensitive()
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.servicesubsystem;
|
package org.eclipse.rse.subsystems.files.core.servicesubsystem;
|
||||||
|
|
||||||
|
@ -914,4 +915,4 @@ public final class FileServiceSubSystem extends RemoteFileSubSystem implements I
|
||||||
|
|
||||||
return encoding;
|
return encoding;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.servicesubsystem;
|
package org.eclipse.rse.subsystems.files.core.servicesubsystem;
|
||||||
|
|
||||||
|
@ -40,4 +41,4 @@ public interface IFileServiceSubSystemConfiguration extends IRemoteFileSubSystem
|
||||||
public ISearchService createSearchService(IHost host);
|
public ISearchService createSearchService(IHost host);
|
||||||
public IHostSearchResultConfiguration createSearchConfiguration(IHost host, IHostSearchResultSet resultSet, Object searchTarget, SystemSearchString searchString);
|
public IHostSearchResultConfiguration createSearchConfiguration(IHost host, IHostSearchResultSet resultSet, Object searchTarget, SystemSearchString searchString);
|
||||||
public ILanguageUtilityFactory getLanguageUtilityFactory(IRemoteFileSubSystem ss);
|
public ILanguageUtilityFactory getLanguageUtilityFactory(IRemoteFileSubSystem ss);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.subsystems;
|
package org.eclipse.rse.subsystems.files.core.subsystems;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
@ -294,4 +295,4 @@ public interface IRemoteFile extends IRemoteContainer, IRemotePropertyHolder, IS
|
||||||
* @since 2.0
|
* @since 2.0
|
||||||
*/
|
*/
|
||||||
public String getEncoding();
|
public String getEncoding();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2000, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2000, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.subsystems;
|
package org.eclipse.rse.subsystems.files.core.subsystems;
|
||||||
/**
|
/**
|
||||||
|
@ -34,4 +35,4 @@ public interface IRemoteFileExceptionMessages
|
||||||
public static final String FILEMSG_FOLDER_NOTFOUND = "RSEF1004"; //$NON-NLS-1$
|
public static final String FILEMSG_FOLDER_NOTFOUND = "RSEF1004"; //$NON-NLS-1$
|
||||||
|
|
||||||
public static final String FILEMSG_FILE_NOTFOUND = "RSEF1005"; //$NON-NLS-1$
|
public static final String FILEMSG_FILE_NOTFOUND = "RSEF1005"; //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.subsystems;
|
package org.eclipse.rse.subsystems.files.core.subsystems;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
@ -723,4 +724,4 @@ public interface IRemoteFileSubSystem extends ISubSystem{
|
||||||
* no address can be resolved.
|
* no address can be resolved.
|
||||||
*/
|
*/
|
||||||
public InetAddress getLocalAddress();
|
public InetAddress getLocalAddress();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.subsystems;
|
package org.eclipse.rse.subsystems.files.core.subsystems;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
@ -1196,4 +1197,4 @@ public abstract class RemoteFile implements IRemoteFile, IAdaptable, Comparable
|
||||||
public void setEncoding(String encoding) {
|
public void setEncoding(String encoding) {
|
||||||
RemoteFileEncodingManager.getInstance().setEncoding(getHostName(), getAbsolutePath(), encoding);
|
RemoteFileEncodingManager.getInstance().setEncoding(getHostName(), getAbsolutePath(), encoding);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.subsystems;
|
package org.eclipse.rse.subsystems.files.core.subsystems;
|
||||||
|
|
||||||
|
@ -202,4 +203,4 @@ public class RemoteFileEmpty extends RemoteFile
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.subsystems;
|
package org.eclipse.rse.subsystems.files.core.subsystems;
|
||||||
|
|
||||||
|
@ -175,4 +176,4 @@ public class RemoteFileRoot extends RemoteFile
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation and others. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* Martin Oberhuber (Wind River) - Fix 162962 - recursive removeCachedRemoteFile()
|
* Martin Oberhuber (Wind River) - Fix 162962 - recursive removeCachedRemoteFile()
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.subsystems;
|
package org.eclipse.rse.subsystems.files.core.subsystems;
|
||||||
// copy all the following imports to your child class...
|
// copy all the following imports to your child class...
|
||||||
|
@ -1767,4 +1768,4 @@ public abstract class RemoteFileSubSystem extends SubSystem implements IRemoteFi
|
||||||
public String getRemoteEncoding() {
|
public String getRemoteEncoding() {
|
||||||
return System.getProperty("file.encoding");
|
return System.getProperty("file.encoding");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.subsystems;
|
package org.eclipse.rse.subsystems.files.core.subsystems;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
@ -494,4 +495,4 @@ public abstract class RemoteFileSubSystemConfiguration extends SubSystemConfigur
|
||||||
return isFor;
|
return isFor;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.util;
|
package org.eclipse.rse.subsystems.files.core.util;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
@ -208,4 +209,4 @@ public class ValidatorFileFilterString
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.core.util;
|
package org.eclipse.rse.subsystems.files.core.util;
|
||||||
import java.util.Vector;
|
import java.util.Vector;
|
||||||
|
@ -161,4 +162,4 @@ public class ValidatorFileUniqueName
|
||||||
{
|
{
|
||||||
return "ValidatorFileFilterString class"; //$NON-NLS-1$
|
return "ValidatorFileFilterString class"; //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
################################################################################
|
###############################################################################
|
||||||
# Copyright (c) 2006 IBM Corporation. All rights reserved.
|
# Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
# This program and the accompanying materials are made available under the terms
|
# All rights reserved. This program and the accompanying materials
|
||||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
# are made available under the terms of the Eclipse Public License v1.0
|
||||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
# which accompanies this distribution, and is available at
|
||||||
#
|
# http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
#
|
||||||
# Initial Contributors:
|
# Initial Contributors:
|
||||||
# The following IBM employees contributed to the Remote System Explorer
|
# The following IBM employees contributed to the Remote System Explorer
|
||||||
# component that contains this file: David McKnight, Kushal Munir,
|
# component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
#
|
#
|
||||||
# Contributors:
|
# Contributors:
|
||||||
# {Name} (company) - description of contribution.
|
# {Name} (company) - description of contribution.
|
||||||
################################################################################
|
###############################################################################
|
||||||
|
|
||||||
# NLS_MESSAGEFORMAT_NONE
|
# NLS_MESSAGEFORMAT_NONE
|
||||||
# NLS_ENCODING=UTF-8
|
# NLS_ENCODING=UTF-8
|
||||||
|
@ -21,4 +22,4 @@ pluginName = RSE DStore Files
|
||||||
providerName = Eclipse.org
|
providerName = Eclipse.org
|
||||||
|
|
||||||
Files=Files
|
Files=Files
|
||||||
FilesDescription=This configuration allows you to work with files on local or remote systems using the DataStore protocol.
|
FilesDescription=This configuration allows you to work with files on local or remote systems using the DataStore protocol.
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.model;
|
package org.eclipse.rse.subsystems.files.dstore.model;
|
||||||
|
|
||||||
|
@ -131,4 +132,4 @@ public class DStoreFile extends AbstractRemoteFile implements IRemoteFile
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.model;
|
package org.eclipse.rse.subsystems.files.dstore.model;
|
||||||
|
|
||||||
|
@ -123,4 +124,4 @@ public class DStoreFileAdapter implements IHostFileToRemoteFileAdapter
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2004, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2004, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.old;
|
package org.eclipse.rse.subsystems.files.dstore.old;
|
||||||
|
|
||||||
|
@ -120,4 +121,4 @@ public class FileTransferStatusListener extends StatusChangeListener
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.old;
|
package org.eclipse.rse.subsystems.files.dstore.old;
|
||||||
|
|
||||||
|
@ -393,4 +394,4 @@ public class SearchResultsChangeListener implements IDomainListener, ICommunicat
|
||||||
public boolean isPassiveCommunicationsListener() {
|
public boolean isPassiveCommunicationsListener() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.old;
|
package org.eclipse.rse.subsystems.files.dstore.old;
|
||||||
|
|
||||||
|
@ -475,4 +476,4 @@ public class StatusChangeListener implements IDomainListener, ICommunicationsLis
|
||||||
public boolean isNetworkDown() {
|
public boolean isNetworkDown() {
|
||||||
return _networkDown;
|
return _networkDown;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
||||||
|
|
||||||
|
@ -162,4 +163,4 @@ public class DStoreFileSubSystemConfiguration extends FileServiceSubSystemConfig
|
||||||
{
|
{
|
||||||
return IDStoreService.class;
|
return IDStoreService.class;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
||||||
|
|
||||||
|
@ -139,4 +140,4 @@ public class DStoreFileSubSystemSearchResultConfiguration extends DStoreSearchRe
|
||||||
OutputRefresh refresh = new OutputRefresh(this);
|
OutputRefresh refresh = new OutputRefresh(this);
|
||||||
Display.getDefault().asyncExec(refresh);
|
Display.getDefault().asyncExec(refresh);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
||||||
|
|
||||||
|
@ -75,4 +76,4 @@ public class DStoreJavaLanguageUtility extends AbstractJavaLanguageUtility imple
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
||||||
|
|
||||||
|
@ -76,4 +77,4 @@ public class DStoreLanguageUtilityFactory extends AbstractLanguageUtilityFactory
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2002, 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2002, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
package org.eclipse.rse.subsystems.files.dstore.subsystem;
|
||||||
|
|
||||||
|
@ -305,4 +306,4 @@ public class RemoteFilePropertyChangeListener implements IDomainListener,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
################################################################################
|
###############################################################################
|
||||||
# Copyright (c) 2006 IBM Corporation. All rights reserved.
|
# Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
# This program and the accompanying materials are made available under the terms
|
# All rights reserved. This program and the accompanying materials
|
||||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
# are made available under the terms of the Eclipse Public License v1.0
|
||||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
# which accompanies this distribution, and is available at
|
||||||
#
|
# http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
#
|
||||||
# Initial Contributors:
|
# Initial Contributors:
|
||||||
# The following IBM employees contributed to the Remote System Explorer
|
# The following IBM employees contributed to the Remote System Explorer
|
||||||
# component that contains this file: David McKnight, Kushal Munir,
|
# component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
#
|
#
|
||||||
# Contributors:
|
# Contributors:
|
||||||
# {Name} (company) - description of contribution.
|
# {Name} (company) - description of contribution.
|
||||||
################################################################################
|
###############################################################################
|
||||||
|
|
||||||
# NLS_MESSAGEFORMAT_NONE
|
# NLS_MESSAGEFORMAT_NONE
|
||||||
# NLS_ENCODING=UTF-8
|
# NLS_ENCODING=UTF-8
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.ftp.model;
|
package org.eclipse.rse.internal.subsystems.files.ftp.model;
|
||||||
|
|
||||||
|
@ -67,4 +68,4 @@ public class FTPFileAdapter implements IHostFileToRemoteFileAdapter
|
||||||
// TODO Auto-generated method stub
|
// TODO Auto-generated method stub
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.ftp.model;
|
package org.eclipse.rse.internal.subsystems.files.ftp.model;
|
||||||
|
|
||||||
|
@ -64,4 +65,4 @@ public class FTPRemoteFile extends AbstractRemoteFile
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
################################################################################
|
###############################################################################
|
||||||
# Copyright (c) 2006 IBM Corporation. All rights reserved.
|
# Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
# This program and the accompanying materials are made available under the terms
|
# All rights reserved. This program and the accompanying materials
|
||||||
# of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
# are made available under the terms of the Eclipse Public License v1.0
|
||||||
# available at http://www.eclipse.org/legal/epl-v10.html
|
# which accompanies this distribution, and is available at
|
||||||
#
|
# http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
#
|
||||||
# Initial Contributors:
|
# Initial Contributors:
|
||||||
# The following IBM employees contributed to the Remote System Explorer
|
# The following IBM employees contributed to the Remote System Explorer
|
||||||
# component that contains this file: David McKnight, Kushal Munir,
|
# component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
#
|
#
|
||||||
# Contributors:
|
# Contributors:
|
||||||
# {Name} (company) - description of contribution.
|
# {Name} (company) - description of contribution.
|
||||||
################################################################################
|
###############################################################################
|
||||||
|
|
||||||
# NLS_MESSAGEFORMAT_NONE
|
# NLS_MESSAGEFORMAT_NONE
|
||||||
# NLS_ENCODING=UTF-8
|
# NLS_ENCODING=UTF-8
|
||||||
|
@ -21,4 +22,4 @@ pluginName = RSE Local Files
|
||||||
providerName = Eclipse.org
|
providerName = Eclipse.org
|
||||||
|
|
||||||
Files=Local Files
|
Files=Local Files
|
||||||
FilesDescription=This configuration allows you to work with files on the local system and doesn't require any communication server to be running.
|
FilesDescription=This configuration allows you to work with files on the local system and doesn't require any communication server to be running.
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.local;
|
package org.eclipse.rse.internal.subsystems.files.local;
|
||||||
|
|
||||||
|
@ -70,4 +71,4 @@ public class Activator extends AbstractUIPlugin {
|
||||||
public static ImageDescriptor getImageDescriptor(String path) {
|
public static ImageDescriptor getImageDescriptor(String path) {
|
||||||
return AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.rse.subsystems.files.local", path); //$NON-NLS-1$
|
return AbstractUIPlugin.imageDescriptorFromPlugin("org.eclipse.rse.subsystems.files.local", path); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.local;
|
package org.eclipse.rse.internal.subsystems.files.local;
|
||||||
|
|
||||||
|
@ -60,4 +61,4 @@ public class LocalJavaLanguageUtility extends AbstractJavaLanguageUtility {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.local;
|
package org.eclipse.rse.internal.subsystems.files.local;
|
||||||
|
|
||||||
|
@ -75,4 +76,4 @@ public class LocalLanguageUtilityFactory extends AbstractLanguageUtilityFactory
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
/********************************************************************************
|
/*******************************************************************************
|
||||||
* Copyright (c) 2006 IBM Corporation. All rights reserved.
|
* Copyright (c) 2006, 2007 IBM Corporation and others.
|
||||||
* This program and the accompanying materials are made available under the terms
|
* All rights reserved. This program and the accompanying materials
|
||||||
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
|
* are made available under the terms of the Eclipse Public License v1.0
|
||||||
* available at http://www.eclipse.org/legal/epl-v10.html
|
* which accompanies this distribution, and is available at
|
||||||
*
|
* http://www.eclipse.org/legal/epl-v10.html
|
||||||
|
*
|
||||||
* Initial Contributors:
|
* Initial Contributors:
|
||||||
* The following IBM employees contributed to the Remote System Explorer
|
* The following IBM employees contributed to the Remote System Explorer
|
||||||
* component that contains this file: David McKnight, Kushal Munir,
|
* component that contains this file: David McKnight, Kushal Munir,
|
||||||
|
@ -12,7 +13,7 @@
|
||||||
*
|
*
|
||||||
* Contributors:
|
* Contributors:
|
||||||
* {Name} (company) - description of contribution.
|
* {Name} (company) - description of contribution.
|
||||||
********************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
package org.eclipse.rse.internal.subsystems.files.local;
|
package org.eclipse.rse.internal.subsystems.files.local;
|
||||||
|
|
||||||
|
@ -118,4 +119,4 @@ public class LocalSearchResultConfiguration extends AbstractSearchResultConfigur
|
||||||
return _fileSubSystem;
|
return _fileSubSystem;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Copyright (c) 2001, 2006 IBM Corporation and others.
|
# Copyright (c) 2001, 2007 IBM Corporation and others.
|
||||||
# All rights reserved. This program and the accompanying materials
|
# All rights reserved. This program and the accompanying materials
|
||||||
# are made available under the terms of the Eclipse Public License v1.0
|
# are made available under the terms of the Eclipse Public License v1.0
|
||||||
# which accompanies this distribution, and is available at
|
# which accompanies this distribution, and is available at
|
||||||
# http://www.eclipse.org/legal/epl-v10.html
|
# http://www.eclipse.org/legal/epl-v10.html
|
||||||
#
|
#
|
||||||
# Contributors:
|
# Contributors:
|
||||||
# IBM Corporation - initial API and implementation
|
# IBM Corporation - initial API and implementation
|
||||||
# Martin Oberhuber (Wind River) - fix ant build for "Assert", make consistent
|
# Martin Oberhuber (Wind River) - fix ant build for "Assert", make consistent
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
# Copyright (c) 2006 Wind River Systems, Inc. and others.
|
# Copyright (c) 2006, 2007 Wind River Systems, Inc. and others.
|
||||||
# All rights reserved. This program and the accompanying materials
|
# All rights reserved. This program and the accompanying materials
|
||||||
# are made available under the terms of the Eclipse Public License v1.0
|
# are made available under the terms of the Eclipse Public License v1.0
|
||||||
# which accompanies this distribution, and is available at
|
# which accompanies this distribution, and is available at
|
||||||
|
|
Loading…
Add table
Reference in a new issue