Examples of describe()


Examples of tool.model.describer.InterfaceContentDescriber.describe()

      try {
        InterfaceContentDescriber icd = new InterfaceContentDescriber();
        for (IResource file : folder.members()){
          if (!file.getFileExtension().equalsIgnoreCase("cdf"))
            continue;
          if (icd.describe(((IFile)file).getContents(), null) != IContentDescriber.VALID)
            continue;
          ToolInterface inter = ToolInterface.fetch(file.getProject(), (IFile)file);
          if (inter != null)
            interfaces.add(inter);
        }
View Full Code Here

Examples of tool.navigator.cdf.InterfaceContentDescriber.describe()

      try {
        InterfaceContentDescriber icd = new InterfaceContentDescriber();
        for (IResource file : folder.members()){
          if (!file.getFileExtension().equalsIgnoreCase("cdf"))
            continue;
          if (icd.describe(((IFile)file).getContents(), null) != IContentDescriber.VALID)
            continue;
          ToolInterface inter = ToolInterface.fetch(file.getProject(), (IFile)file);
          if (inter != null)
            interfaces.add(inter);
        }
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.