Package entagged.tageditor.tools.stringtransform.operations

Examples of entagged.tageditor.tools.stringtransform.operations.CapitalizeFirstOp


   *            An array of indexes, which should be applied to the list.
   */
  public TransformationList(int[] selectedIndices) {
    this.transformationList = new Vector();
    transformationList.add(new CapitalizeOp());
        transformationList.add(new CapitalizeFirstOp());
    transformationList.add(new EmptyOp());
    transformationList.add(new LowerCaseOp());
    transformationList.add(new RomanLettersOp());
    transformationList.add(new SlashToDashOp());
    transformationList.add(new SpacesToUnderscoreOp());
View Full Code Here

TOP

Related Classes of entagged.tageditor.tools.stringtransform.operations.CapitalizeFirstOp

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.