Example usage for org.eclipse.jdt.core IJavaModelStatusConstants READ_ONLY

List of usage examples for org.eclipse.jdt.core IJavaModelStatusConstants READ_ONLY

Introduction

In this page you can find the example usage for org.eclipse.jdt.core IJavaModelStatusConstants READ_ONLY.

Prototype

int READ_ONLY

To view the source code for org.eclipse.jdt.core IJavaModelStatusConstants READ_ONLY.

Click Source Link

Document

Status constant indicating that the operation encountered a read-only element.

Usage

From source file:com.codenvy.ide.ext.java.server.internal.core.BinaryMember.java

License:Open Source License

public void copy(IJavaElement container, IJavaElement sibling, String rename, boolean force,
        IProgressMonitor monitor) throws JavaModelException {
    throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.READ_ONLY, this));
}

From source file:com.codenvy.ide.ext.java.server.internal.core.BinaryMember.java

License:Open Source License

public void move(IJavaElement container, IJavaElement sibling, String rename, boolean force,
        IProgressMonitor monitor) throws JavaModelException {
    throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.READ_ONLY, this));
}

From source file:com.codenvy.ide.ext.java.server.internal.core.BinaryMember.java

License:Open Source License

public void rename(String newName, boolean force, IProgressMonitor monitor) throws JavaModelException {
    throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.READ_ONLY, this));
}

From source file:com.codenvy.ide.ext.java.server.internal.core.BinaryMember.java

License:Open Source License

public void setContents(String contents, IProgressMonitor monitor) throws JavaModelException {
    throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.READ_ONLY, this));
}

From source file:com.codenvy.ide.ext.java.server.internal.core.BinaryType.java

License:Open Source License

public IField createField(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
        throws JavaModelException {
    throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.READ_ONLY, this));
}

From source file:com.codenvy.ide.ext.java.server.internal.core.BinaryType.java

License:Open Source License

public IInitializer createInitializer(String contents, IJavaElement sibling, IProgressMonitor monitor)
        throws JavaModelException {
    throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.READ_ONLY, this));
}

From source file:com.codenvy.ide.ext.java.server.internal.core.BinaryType.java

License:Open Source License

public IMethod createMethod(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
        throws JavaModelException {
    throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.READ_ONLY, this));
}

From source file:com.codenvy.ide.ext.java.server.internal.core.BinaryType.java

License:Open Source License

public IType createType(String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
        throws JavaModelException {
    throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.READ_ONLY, this));
}

From source file:com.codenvy.ide.ext.java.server.internal.core.JarPackageFragment.java

License:Open Source License

/**
 * @see org.eclipse.jdt.core.IPackageFragment
 *///from  w  w  w. ja v a  2  s  .  c o  m
public ICompilationUnit createCompilationUnit(String cuName, String contents, boolean force,
        IProgressMonitor monitor) throws JavaModelException {
    throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.READ_ONLY, this));
}

From source file:org.eclipse.che.jdt.internal.core.Openable.java

License:Open Source License

/**
 * @see IOpenable//w w w  .  ja v a  2s  . com
 */
public void save(IProgressMonitor pm, boolean force) throws JavaModelException {
    if (isReadOnly()) {
        throw new JavaModelException(new JavaModelStatus(IJavaModelStatusConstants.READ_ONLY, this));
    }
    IBuffer buf = getBuffer();
    if (buf != null) { // some Openables (like a JavaProject) don't have a buffer
        buf.save(pm, force);
        makeConsistent(pm); // update the element info of this element
    }
}