Lines Matching refs:classpath
36 StringBuilder classpath = new StringBuilder(); in generateFrom() local
38 classpath.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" in generateFrom()
82 classpath.append(" <classpathentry kind=\"src\""); in generateFrom()
85 classpath.append(" excluding=\"") in generateFrom()
88 classpath.append(" path=\"") in generateFrom()
96 classpath.append(" <classpathentry kind=\"lib\" path=\"") in generateFrom()
104 classpath.append(" <classpathentry kind=\"output\" path=\"" in generateFrom()
107 classpath.append("</classpath>\n"); in generateFrom()
109 Files.toFile(classpath.toString(), new File(".classpath")); in generateFrom()
118 StringBuilder classpath = new StringBuilder(); in constructExcluding() local
137 classpath.append('|'); in constructExcluding()
139 classpath.append(nextPath.substring(path.length() + 1)) in constructExcluding()
154 classpath.append('|'); in constructExcluding()
156 classpath.append(excludedPath.substring(path.length() + 1)) in constructExcluding()
162 return classpath; in constructExcluding()