List of usage examples for com.google.gwt.dev.javac Shared toPath
public static String toPath(String qualifiedTypeName)
From source file:com.google.gwt.dev.javac.testing.impl.MockJavaResource.java
License:Apache License
public MockJavaResource(String qualifiedTypeName) { super(Shared.toPath(qualifiedTypeName)); this.qualifiedTypeName = qualifiedTypeName; }
From source file:com.google.gwt.dev.javac.testing.JavaSource.java
License:Apache License
/** * Constructs a new source with the given fully qualified java type name. * * @param typeName fully qualified java type name, cannot be a nested class *//*from w w w . j av a 2 s. co m*/ public JavaSource(String typeName) { this.path = Shared.toPath(typeName); }