All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.thirdparty.xapi.source.read.SourceUtil Maven / Gradle / Ivy

The newest version!
package com.google.gwt.thirdparty.xapi.source.read;

public class SourceUtil {

  private SourceUtil() {}

  public static String toSourceName(String simpleName) {
    return simpleName.replace('$', '.');
  }

  public static String toFlatName(String simpleName) {
    return simpleName.replace('$', '_').replace('.', '_');
  }



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy