Examples of matchesClassesPattern()


Examples of org.objectstyle.wolips.core.resources.types.project.IProjectPatternsets.matchesClassesPattern()

    outPath = this.getJavaOutputPath();
    compilerOutPath = this.getJavaProject().getOutputLocation();
    baseSegments = compilerOutPath.segmentCount();

    IProjectPatternsets adaptedProject = (IProjectPatternsets) this.getProject().getAdapter(IProjectPatternsets.class);
    if (adaptedProject.matchesClassesPattern(resource)) {
      IPath path = resource.getFullPath();
      if (compilerOutPath.isPrefixOf(path) && !outPath.isPrefixOf(path)) {
        IPath cp = path.removeFirstSegments(baseSegments);
        path = outPath.append(cp);
        if ((null != delta) && (delta.getKind() == IResourceDelta.REMOVED)) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.