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

editor.util.transform.java.Wrap Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
/*
 * Copyright 2014 Guidewire Software, Inc.
 */

package editor.util.transform.java;

class Wrap {
  String JAVA_WRAP_START;
  String JAVA_WRAP_END;
  String GOSU_WRAP_START;
  String GOSU_WRAP_END;

  Wrap(String js, String je, String gs, String ge) {
    JAVA_WRAP_START = js;
    JAVA_WRAP_END = je;
    GOSU_WRAP_START = gs;
    GOSU_WRAP_END = ge;
  }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy