Java String Remove removeImportClass(String className)

Here you can find the source of removeImportClass(String className)

Description

remove Import Class

License

Apache License

Declaration

public static void removeImportClass(String className) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.util.List;

public class Main {
    private static List importedClass;

    public static void removeImportClass(String className) {
        importedClass.remove(className);
    }/*from   w  ww  .j  a va 2 s  .  c o m*/
}

Related

  1. removeFillers(String str)
  2. removeFromSearchPath(String _path)
  3. removeGender(String pos)
  4. removeGenericQuote(String str)
  5. removeIllegalXMLChars(String in)
  6. removeKeyPrefix(Properties properties, String prefix)
  7. removeModuleReference(String allStr, String refStr)
  8. removeNewLineAndTab(String value)
  9. removePostfixedNewline(String s)