本文整理汇总了Java中org.eclipse.core.resources.IResource.PROJECT属性的典型用法代码示例。如果您正苦于以下问题:Java IResource.PROJECT属性的具体用法?Java IResource.PROJECT怎么用?Java IResource.PROJECT使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类org.eclipse.core.resources.IResource
的用法示例。
在下文中一共展示了IResource.PROJECT属性的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visit
@Override
public boolean visit(IResourceDelta delta) throws CoreException {
IResource resource = delta.getResource();
if (resource == null) {
return false;
}
switch (resource.getType()) {
case IResource.ROOT:
case IResource.PROJECT:
case IResource.FOLDER:
return true;
case IResource.FILE:
IFile file = (IFile) resource;
if (EditorConfigConstants.EDITORCONFIG.equals(file.getName())
&& delta.getKind() == IResourceDelta.CHANGED) {
entries.remove(new FileResource(file));
}
}
return false;
}
示例2: dialogChanged
/**
* Ensures that both text fields are set.
*/
private void dialogChanged() {
IResource container = ResourcesPlugin.getWorkspace().getRoot().findMember(new Path(getContainerName()));
if (getContainerName().length() == 0) {
updateStatus(EditorConfigMessages.NewEditorConfigFileWizardPage_folder_required_error);
return;
}
if (container == null || (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {
updateStatus(EditorConfigMessages.NewEditorConfigFileWizardPage_folder_noexists_error);
return;
}
if (!container.isAccessible()) {
updateStatus(EditorConfigMessages.NewEditorConfigFileWizardPage_project_noaccessible_error);
return;
}
if (((IContainer) container).exists(EDITOTR_CONFIG_PATH)) {
updateStatus(EditorConfigMessages.NewEditorConfigFileWizardPage_folder_already_editorconfig_error);
return;
}
updateStatus(null);
}
示例3: dialogChanged
/**
* Ensures that both text fields are set.
*/
private void dialogChanged() {
IResource container = ResourcesPlugin.getWorkspace().getRoot()
.findMember(new Path(getContainerName().get("ProjectPath")));
if(!containerSourceText.getText().isEmpty() && !containerTargetText.getText().isEmpty())
{
okButton.setEnabled(true);
}
if (getContainerName().get("ProjectPath").length() == 0) {
updateStatus("File container must be specified");
return;
}
if (container == null
|| (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {
updateStatus("File container must exist");
return;
}
if (!container.isAccessible()) {
updateStatus("Project must be writable");
return;
}
updateStatus(null);
}
示例4: dialogChanged
/**
* This method ensures user select Target project and permissions
*/
private void dialogChanged() {
IResource container = ResourcesPlugin.getWorkspace().getRoot()
.findMember(new Path(getContainerName().get("TargetPath")));
if (getContainerName().get("TargetPath").length() == 0) {
updateStatus("File container must be specified");
return;
}
if (container == null
|| (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {
updateStatus("File container must exist");
return;
}
if (!container.isAccessible()) {
updateStatus("Project must be writable");
return;
}
updateStatus(null);
}
示例5: visit
@Override
public boolean visit(IResourceDelta delta) throws CoreException {
boolean processResourceChildren = true;
if(delta.getResource().getType() == IResource.PROJECT){
if(delta.getKind() == IResourceDelta.ADDED){
newlyCreatedProjects.add((IProject) delta.getResource());
}
processResourceChildren = false; // no need to analyze project content
}
return processResourceChildren;
}
示例6: getParent
@Override
public ResourcePath getParent() {
if (container.getType() == IResource.PROJECT) {
// Stop the search of '.editorconfig' files in the parent container
return null;
}
IContainer parent = container.getParent();
return parent == null ? null : new ContainerResourcePath(parent);
}
示例7: dialogChanged
/**
* Ensures that both text fields are set.
*/
private void dialogChanged() {
IResource container = ResourcesPlugin.getWorkspace().getRoot()
.findMember(new Path(getContainerName()));
String fileName = getFileName();
if (getContainerName().length() == 0) {
updateStatus("File container must be specified");
return;
}
if (container == null
|| (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {
updateStatus("File container must exist");
return;
}
if (!container.isAccessible()) {
updateStatus("Project must be writable");
return;
}
if (fileName.length() == 0) {
updateStatus("File name must be specified");
return;
}
if (fileName.replace('\\', '/').indexOf('/', 1) > 0) {
updateStatus("File name must be valid");
return;
}
int dotLoc = fileName.lastIndexOf('.');
if (dotLoc != -1) {
String ext = fileName.substring(dotLoc + 1);
if (ext.equalsIgnoreCase("mpe") == false) {
updateStatus("File extension must be \"mpe\"");
return;
}
}
updateStatus(null);
}
示例8: getAcceptedResourceTypes
@Override
protected int getAcceptedResourceTypes() {
return IResource.PROJECT | IResource.FOLDER | IResource.FILE;
}
示例9: dialogChanged
/**
* Ensures that both text fields are set.
*/
private void dialogChanged ()
{
final IResource container = ResourcesPlugin.getWorkspace ().getRoot ().findMember ( new Path ( getContainerName () ) );
final String fileName = getFileName ();
if ( getContainerName ().length () == 0 )
{
updateStatus ( "File container must be specified" );
return;
}
if ( container == null || ( container.getType () & ( IResource.PROJECT | IResource.FOLDER ) ) == 0 )
{
updateStatus ( "File container must exist" );
return;
}
if ( !container.isAccessible () )
{
updateStatus ( "Project must be writable" );
return;
}
if ( fileName.length () == 0 )
{
updateStatus ( "File name must be specified" );
return;
}
if ( fileName.replace ( '\\', '/' ).indexOf ( '/', 1 ) > 0 )
{
updateStatus ( "File name must be valid" );
return;
}
final int dotLoc = fileName.lastIndexOf ( '.' );
if ( dotLoc != -1 )
{
final String ext = fileName.substring ( dotLoc + 1 );
if ( ext.equalsIgnoreCase ( "oscar" ) == false )
{
updateStatus ( "File extension must be \"oscar\"" );
return;
}
}
updateStatus ( null );
}
示例10: dialogChanged
/**
* Ensures that both text fields are set.
*/
private void dialogChanged() {
IResource container = ResourcesPlugin.getWorkspace().getRoot().findMember(new Path(getContainerName()));
String fileName = getFileName();
if (getContainerName().length() == 0) {
updateStatus("File container must be specified");
return;
}
if (container == null || (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {
updateStatus("File container must exist");
return;
}
if (!container.isAccessible()) {
updateStatus("Project must be writable");
return;
}
if (fileName.length() == 0) {
updateStatus("File name must be specified");
return;
}
if (fileName.replace('\\', '/').indexOf('/', 1) > 0) {
updateStatus("File name must be valid");
return;
}
File file = new File(container.getLocation().toOSString());
File[] contains = file.listFiles(new FileFilter() {
@Override
public boolean accept(File pathname) {
if (pathname.getName().equalsIgnoreCase(fileName))
return true;
else
return false;
}
});
if (contains != null && contains.length > 0) {
updateStatus("File name must be different");
return;
}
int dotLoc = fileName.lastIndexOf('.');
if (dotLoc != -1) {
String ext = fileName.substring(dotLoc + 1);
if (ext.equalsIgnoreCase("cimpl") == false) {
updateStatus("File extension must be \"cimpl\"");
return;
}
}
updateStatus(null);
}
示例11: dialogChanged
/**
* Ensures that both text fields are set.
*/
private void dialogChanged() {
IResource container = ResourcesPlugin.getWorkspace().getRoot().findMember(new Path(getContainerName()));
String fileName = getFileName();
if (getContainerName().length() == 0) {
updateStatus("File container must be specified");
return;
}
if (container == null || (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {
updateStatus("File container must exist");
return;
}
if (!container.isAccessible()) {
updateStatus("Project must be writable");
return;
}
if (fileName.length() == 0) {
updateStatus("File name must be specified");
return;
}
if (fileName.replace('\\', '/').indexOf('/', 1) > 0) {
updateStatus("File name must be valid");
return;
}
File file = new File(container.getLocation().toOSString());
File[] contains = file.listFiles(new FileFilter() {
@Override
public boolean accept(File pathname) {
if (pathname.getName().equalsIgnoreCase(fileName))
return true;
else
return false;
}
});
if (contains != null && contains.length > 0) {
updateStatus("File name must be different");
return;
}
int dotLoc = fileName.lastIndexOf('.');
if (dotLoc != -1) {
String ext = fileName.substring(dotLoc + 1);
if (ext.equalsIgnoreCase("deploy") == false) {
updateStatus("File extension must be \"deploy\"");
return;
}
}
updateStatus(null);
}
示例12: dialogChanged
private void dialogChanged() {
IResource container = ResourcesPlugin.getWorkspace().getRoot().findMember(new Path(getContainerName()));
String fileName = getFileName();
if (getContainerName().length() == 0) {
updateStatus("File container must be specified");
return;
}
if (container == null || (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {
updateStatus("File container must exist");
return;
}
if (!container.isAccessible()) {
updateStatus("Project must be writable");
return;
}
if (fileName.length() == 0) {
updateStatus("File name must be specified");
return;
}
if (fileName.replace('\\', '/').indexOf('/', 1) > 0) {
updateStatus("File name must be valid");
return;
}
File file = new File(container.getLocation().toOSString());
File[] contains = file.listFiles(new FileFilter() {
@Override
public boolean accept(File pathname) {
if (pathname.getName().equalsIgnoreCase(fileName))
return true;
else
return false;
}
});
if (contains != null && contains.length > 0) {
updateStatus("File name must be different");
return;
}
int dotLoc = fileName.lastIndexOf('.');
if (dotLoc != -1) {
String ext = fileName.substring(dotLoc + 1);
if (ext.equalsIgnoreCase("types") == false) {
updateStatus("File extension must be \"types\"");
return;
}
}
updateStatus(null);
}
示例13: dialogChanged
/**
* Ensures that both text fields are set.
*/
private void dialogChanged() {
IResource container = ResourcesPlugin.getWorkspace().getRoot().findMember(new Path(getContainerName()));
String fileName = getFileName();
if (getContainerName().length() == 0) {
updateStatus("File container must be specified");
return;
}
if (container == null || (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {
updateStatus("File container must exist");
return;
}
if (!container.isAccessible()) {
updateStatus("Project must be writable");
return;
}
if (fileName.length() == 0) {
updateStatus("File name must be specified");
return;
}
if (fileName.replace('\\', '/').indexOf('/', 1) > 0) {
updateStatus("File name must be valid");
return;
}
File file = new File(container.getLocation().toOSString());
File[] contains = file.listFiles(new FileFilter() {
@Override
public boolean accept(File pathname) {
if (pathname.getName().equalsIgnoreCase(fileName))
return true;
else
return false;
}
});
if (contains != null && contains.length > 0) {
updateStatus("File name must be different");
return;
}
int dotLoc = fileName.lastIndexOf('.');
if (dotLoc != -1) {
String ext = fileName.substring(dotLoc + 1);
if (ext.equalsIgnoreCase("lsys") == false) {
updateStatus("File extension must be \"lsys\"");
return;
}
}
updateStatus(null);
}
示例14: dialogChanged
/**
* Ensures that both text fields are set.
*/
private void dialogChanged() {
IResource container = ResourcesPlugin.getWorkspace().getRoot().findMember(new Path(getContainerName()));
String fileName = getFileName();
if (getContainerName().length() == 0) {
updateStatus("File container must be specified");
return;
}
if (container == null || (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {
updateStatus("File container must exist");
return;
}
if (!container.isAccessible()) {
updateStatus("Project must be writable");
return;
}
if (fileName.length() == 0) {
updateStatus("File name must be specified");
return;
}
if (fileName.replace('\\', '/').indexOf('/', 1) > 0) {
updateStatus("File name must be valid");
return;
}
File file = new File(container.getLocation().toOSString());
File[] contains = file.listFiles(new FileFilter() {
@Override
public boolean accept(File pathname) {
if (pathname.getName().equalsIgnoreCase(fileName))
return true;
else
return false;
}
});
if (contains != null && contains.length > 0) {
updateStatus("File name must be different");
return;
}
int dotLoc = fileName.lastIndexOf('.');
if (dotLoc != -1) {
String ext = fileName.substring(dotLoc + 1);
if (ext.equalsIgnoreCase("srvc") == false) {
updateStatus("File extension must be \"srvc\"");
return;
}
}
updateStatus(null);
}
示例15: dialogChanged
/**
* Ensures that both text fields are set.
*/
private void dialogChanged() {
IResource container = ResourcesPlugin.getWorkspace().getRoot().findMember(new Path(getContainerName()));
String fileName = getFileName();
if (getContainerName().length() == 0) {
updateStatus("File container must be specified");
return;
}
if (container == null || (container.getType() & (IResource.PROJECT | IResource.FOLDER)) == 0) {
updateStatus("File container must exist");
return;
}
if (!container.isAccessible()) {
updateStatus("Project must be writable");
return;
}
if (fileName.length() == 0) {
updateStatus("File name must be specified");
return;
}
if (fileName.replace('\\', '/').indexOf('/', 1) > 0) {
updateStatus("File name must be valid");
return;
}
File file = new File(container.getLocation().toOSString());
File[] contains = file.listFiles(new FileFilter() {
@Override
public boolean accept(File pathname) {
if (pathname.getName().equalsIgnoreCase(fileName))
return true;
else
return false;
}
});
if (contains != null && contains.length > 0) {
updateStatus("File name must be different");
return;
}
int dotLoc = fileName.lastIndexOf('.');
if (dotLoc != -1) {
String ext = fileName.substring(dotLoc + 1);
if (ext.equalsIgnoreCase("fassmbl") == false) {
updateStatus("File extension must be \"fassmbl\"");
return;
}
}
updateStatus(null);
}