Home | History | Annotate | Download | only in src

Lines Matching refs:classpath

33      * Generates an Eclipse .classpath file from the given configuration.
36 StringBuilder classpath = new StringBuilder();
38 classpath.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
39 + "<classpath>\n");
82 classpath.append(" <classpathentry kind=\"src\"");
85 classpath.append(" excluding=\"")
88 classpath.append(" path=\"")
96 classpath.append(" <classpathentry kind=\"lib\" path=\"")
104 classpath.append(" <classpathentry kind=\"output\" path=\""
107 classpath.append("</classpath>\n");
109 Files.toFile(classpath.toString(), new File(".classpath"));
118 StringBuilder classpath = new StringBuilder();
137 classpath.append('|');
139 classpath.append(nextPath.substring(path.length() + 1))
154 classpath.append('|');
156 classpath.append(excludedPath.substring(path.length() + 1))
162 return classpath;