Example usage for com.google.gwt.dev.javac Shared toPath

List of usage examples for com.google.gwt.dev.javac Shared toPath

Introduction

In this page you can find the example usage for com.google.gwt.dev.javac Shared toPath.

Prototype

public static String toPath(String qualifiedTypeName) 

Source Link

Usage

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);
}