text stringlengths 30 1.67M |
|---|
<s> package org . eclim . plugin . core . preference ; import java . util . Map ; import org . eclipse . core . resources . IProject ; public interface OptionHandler { public String getNature ( ) ; public Map < String , String > getValues ( ) throws Exception ; public Map < String , String > getValues ( IProject projec... |
<s> package org . eclim . plugin . core . preference ; import org . eclim . Services ; public class RegexValidator implements Validator { private String regex ; public RegexValidator ( String regex ) { this . regex = regex ; } public boolean isValid ( Object value ) { return value != null && ( ( String ) value ) . matc... |
<s> package org . eclim . plugin . core . preference ; import com . google . gson . Gson ; import com . google . gson . JsonParseException ; public class JsonValidator implements Validator { private static final Gson GSON = new Gson ( ) ; private Class < ? > type ; private Validator itemValidator ; public JsonValidator... |
<s> package org . eclim . plugin . core . preference ; import org . eclim . Services ; public class Option implements Comparable < Option > { private static final String GENERAL = "<STR_LIT>" ; private String nature ; private String path ; private String name ; private String description ; private Validator validator ;... |
<s> package org . eclim . plugin . core . preference ; public interface Validator { public boolean isValid ( Object value ) ; public String getMessage ( String name , Object value ) ; } </s> |
<s> package org . eclim . plugin . core . preference ; import java . util . regex . Matcher ; import java . util . regex . Pattern ; import org . apache . commons . lang . StringUtils ; public class PreferenceFactory { private static final Pattern JSON_ARRAY = Pattern . compile ( "<STR_LIT>" ) ; public static Preferenc... |
<s> package org . eclim . plugin . core . preference ; public class OptionInstance extends Option { private String value ; public OptionInstance ( Option option , String value ) { this . value = value ; setPath ( option . getPath ( ) ) ; setName ( option . getName ( ) ) ; } public void setName ( String name ) { super .... |
<s> package org . eclim . plugin . core . preference ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . Map ; import org . apache . commons . lang . ArrayUtils ; import org . eclim . Services ; import org . eclim . logging . Logger ; import org . eclipse . core . resources . IProject... |
<s> package org . eclim . plugin . core . project ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Collections ; import java . util . HashMap ; import java . util . Map ; import org . apache . commons . lang . ArrayUtils ; import org . eclim . logging . Logger ; import org . eclipse... |
<s> package org . eclim . plugin . core . project ; import java . util . List ; import org . eclim . command . CommandLine ; import org . eclim . command . Error ; import org . eclipse . core . resources . IFile ; import org . eclipse . core . resources . IProject ; public interface ProjectManager { public void create ... |
<s> package org . eclim . plugin . core . project ; import java . io . File ; import java . util . ArrayList ; import java . util . Collection ; import java . util . HashMap ; import java . util . List ; import java . util . Set ; import javax . xml . parsers . DocumentBuilderFactory ; import javax . xml . xpath . XPat... |
<s> package org . eclim . plugin . core . command . complete ; import java . util . ArrayList ; import org . apache . commons . lang . StringUtils ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . eclipse . jface . text . DummyTextViewer ; import org . eclim . ... |
<s> package org . eclim . plugin . core . command . complete ; import java . util . regex . Matcher ; import java . util . regex . Pattern ; import org . apache . commons . lang . StringUtils ; import org . apache . commons . lang . builder . EqualsBuilder ; import org . apache . commons . lang . builder . HashCodeBuil... |
<s> package org . eclim . plugin . core . command ; import java . util . Arrays ; import org . eclim . command . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . logging . Logger ; import org . eclim . plugin . core . preference . Preferences ; import ... |
<s> package org . eclim . plugin . core . command . admin ; import java . util . HashMap ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . plugin . PluginResources ; import org . eclim . plugin . core . command . AbstractComma... |
<s> package org . eclim . plugin . core . command . admin ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; @ Command ( name = "<STR_LIT>" , options = "<STR_LIT>" ) public c... |
<s> package org . eclim . plugin . core . command . admin ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . eclipse . EclimApplication ; import org . eclim . eclipse . EclimDaemon ; import org . eclim . logging . Logger ; import org . eclim . plugin . core .... |
<s> package org . eclim . plugin . core . command . admin ; import java . util . Arrays ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . core . preference . Option ; @ Command ( name ... |
<s> package org . eclim . plugin . core . command . admin ; import java . io . File ; import java . io . FileReader ; import java . util . ArrayList ; import java . util . Map ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . ... |
<s> package org . eclim . plugin . core . command . project ; import java . io . File ; import java . io . FileReader ; import java . util . ArrayList ; import java . util . List ; import java . util . Map ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . Comma... |
<s> package org . eclim . plugin . core . command . project ; import java . util . ArrayList ; import org . apache . commons . lang . StringUtils ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org... |
<s> package org . eclim . plugin . core . command . project ; import java . util . HashMap ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; ... |
<s> package org . eclim . plugin . core . command . project ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . core . project . ProjectNatureFactory ; @ Command ( name = "<STR_LIT>" , o... |
<s> package org . eclim . plugin . core . command . project ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . c... |
<s> package org . eclim . plugin . core . command . project ; import java . util . ArrayList ; import java . util . HashMap ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ;... |
<s> package org . eclim . plugin . core . command . project ; import java . io . File ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; impor... |
<s> package org . eclim . plugin . core . command . project ; import java . util . ArrayList ; import org . apache . commons . lang . StringUtils ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org... |
<s> package org . eclim . plugin . core . command . project ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . core . util . ProjectUtils ; @ Co... |
<s> package org . eclim . plugin . core . command . project ; import java . net . URI ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclipse . core . resourc... |
<s> package org . eclim . plugin . core . command . project ; import java . io . File ; import java . lang . reflect . Constructor ; import java . lang . reflect . Field ; import java . lang . reflect . Method ; import java . util . ArrayList ; import org . eclim . Services ; import org . eclim . annotation . Command ;... |
<s> package org . eclim . plugin . core . command . project ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . c... |
<s> package org . eclim . plugin . core . command . project ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . c... |
<s> package org . eclim . plugin . core . command . project ; import java . util . Arrays ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . cor... |
<s> package org . eclim . plugin . core . command . project ; import java . net . URI ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclipse . core . resourc... |
<s> package org . eclim . plugin . core . command . project ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . c... |
<s> package org . eclim . plugin . core . command . project ; import java . util . ArrayList ; import java . util . HashMap ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ;... |
<s> package org . eclim . plugin . core . command . project ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . c... |
<s> package org . eclim . plugin . core . command . project ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . logging . Logger ; import org . eclim . plugin . core . command . AbstractC... |
<s> package org . eclim . plugin . core . command . project ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . core . preference . Preferences ;... |
<s> package org . eclim . plugin . core . command . project ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . c... |
<s> package org . eclim . plugin . core . command . project ; import java . io . File ; import java . util . ArrayList ; import java . util . HashMap ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . plugin . core . command . AbstractCommand ; import org . e... |
<s> package org . eclim . plugin . core . command . search ; import java . io . BufferedReader ; import java . io . FileReader ; import java . util . ArrayList ; import java . util . Collections ; import java . util . Comparator ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; imp... |
<s> package org . eclim . plugin . core . command . history ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . c... |
<s> package org . eclim . plugin . core . command . history ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . core . util . ProjectUtils ; impo... |
<s> package org . eclim . plugin . core . command . history ; import java . text . SimpleDateFormat ; import java . util . ArrayList ; import java . util . Arrays ; import java . util . Comparator ; import java . util . Date ; import java . util . HashMap ; import org . eclim . annotation . Command ; import org . eclim... |
<s> package org . eclim . plugin . core . command . history ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . core . util . ProjectUtils ; impo... |
<s> package org . eclim . plugin . core . command . eclipse ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclipse . core . resources . ResourcesPlugin ; @ Command ( name = "<STR_LIT>" ) public clas... |
<s> package org . eclim . plugin . core . command . eclipse ; import java . util . ArrayList ; import java . util . HashMap ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ;... |
<s> package org . eclim . plugin . core . command . xml ; import java . io . FileInputStream ; import java . io . StringWriter ; import javax . xml . transform . OutputKeys ; import javax . xml . transform . Transformer ; import javax . xml . transform . TransformerFactory ; import javax . xml . transform . sax . SAXSo... |
<s> package org . eclim . plugin . core . command . xml ; import java . util . Iterator ; import java . util . List ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Error ; import org . eclim . command . Options ; import org . eclim . plugin . cor... |
<s> package org . eclim . plugin . core . command . refactoring ; import org . eclipse . ltk . core . refactoring . Refactoring ; public class Refactor { public String name ; public Refactoring refactoring ; public Refactor ( String name , Refactoring refactoring ) { this . name = name ; this . refactoring = refactorin... |
<s> package org . eclim . plugin . core . command . refactoring ; import java . lang . reflect . Field ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . List ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . ... |
<s> package org . eclim . plugin . core . command . refactoring ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclipse . core . resources . IWorkspace ; impo... |
<s> package org . eclim . plugin . core . command . refactoring ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclipse . core . resources . IWorkspace ; impo... |
<s> package org . eclim . plugin . core . command . refactoring ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . HashSet ; import java . util . List ; import java . util . Map ; import org . eclim . plugin . core . util . ProjectUtils ; import org . eclipse . core . resources . IRe... |
<s> package org . eclim . plugin . core . command . refactoring ; import org . eclipse . ltk . core . refactoring . RefactoringStatus ; public class RefactorException extends RuntimeException { private static final long serialVersionUID = <NUM_LIT:1L> ; private RefactoringStatus status ; public RefactorException ( ) { ... |
<s> package org . eclim . plugin . core . command . archive ; import java . io . File ; import java . io . InputStream ; import java . io . OutputStream ; import java . util . regex . Pattern ; import org . apache . commons . lang . SystemUtils ; import org . apache . commons . vfs . FileObject ; import org . apache . ... |
<s> package org . eclim . plugin . core . command . problems ; import java . io . File ; import java . lang . reflect . Field ; import java . lang . reflect . Method ; import java . text . Collator ; import java . util . ArrayList ; import java . util . Collection ; import java . util . Collections ; import java . util... |
<s> package org . eclim ; import java . io . File ; import java . io . FileInputStream ; import java . util . ArrayList ; import java . util . HashMap ; import java . util . Map ; import org . apache . commons . lang . StringUtils ; import org . apache . tools . ant . taskdefs . condition . Os ; import org . eclim . ut... |
<s> package org . eclim . plugin . core . command . xml . validate ; import java . util . List ; import java . util . Map ; import org . eclim . Eclim ; import org . junit . Test ; import static org . junit . Assert . * ; public class ValidateCommandTest { private static final String TEST_FILE = "<STR_LIT>" ; @ Test @ ... |
<s> package org . eclim . plugin . core . command . xml . format ; import org . apache . commons . lang . StringUtils ; import org . eclim . Eclim ; import org . junit . Test ; import static org . junit . Assert . * ; public class FormatCommandTest { private static final String TEST_FILE = "<STR_LIT>" ; @ Test public v... |
<s> package org . eclim . plugin . core . command . admin ; import java . util . HashMap ; import java . util . List ; import java . util . Map ; import org . eclim . Eclim ; import org . junit . Test ; import static org . junit . Assert . * ; public class SettingsCommandTest { @ Test @ SuppressWarnings ( "<STR_LIT:unc... |
<s> package org . eclim . plugin . core . command . admin ; import java . util . Map ; import org . eclim . Eclim ; import org . junit . Test ; import static org . junit . Assert . * ; public class PingCommandTest { @ Test @ SuppressWarnings ( "<STR_LIT:unchecked>" ) public void execute ( ) { Map < String , String > re... |
<s> package org . eclim . plugin . core . command . project ; import java . io . File ; import java . util . List ; import java . util . Map ; import org . eclim . Eclim ; import org . junit . Test ; import static org . junit . Assert . * ; public class ProjectCommandsTest { private static final String TEST_PROJECT = "... |
<s> package org . eclim . plugin . core . command . history ; import java . io . BufferedWriter ; import java . io . FileOutputStream ; import java . io . OutputStreamWriter ; import java . util . List ; import java . util . Map ; import java . util . regex . Pattern ; import org . eclim . Eclim ; import org . junit . ... |
<s> package org . eclim . plugin . core . command . problems ; import java . util . HashMap ; import java . util . List ; import org . eclim . Eclim ; import org . junit . Test ; import static org . junit . Assert . * ; public class ProblemsCommandTest { private static final String TEST_PROJECT = "<STR_LIT>" ; @ Test @... |
<s> package org . eclim . test ; public class Test { private ArrayList list = new ArrayList ( ) ; } </s> |
<s> package org . eclim . plugin . wst . command . complete ; import java . util . List ; import java . util . Map ; import org . eclim . Eclim ; import org . eclim . plugin . wst . Wst ; import org . junit . Test ; import static org . junit . Assert . * ; public class CssCodeCompleteCommandTest { private static final ... |
<s> package org . eclim . plugin . wst . command . complete ; import java . util . List ; import java . util . Map ; import org . eclim . Eclim ; import org . eclim . plugin . wst . Wst ; import org . junit . Test ; import static org . junit . Assert . * ; public class XmlCodeCompleteCommandTest { private static final ... |
<s> package org . eclim . plugin . wst . command . complete ; import java . util . List ; import java . util . Map ; import org . apache . tools . ant . taskdefs . condition . Os ; import org . eclim . Eclim ; import org . eclim . plugin . wst . Wst ; import org . junit . Test ; import static org . junit . Assert . * ;... |
<s> package org . eclim . plugin . wst . command . validate ; import java . util . List ; import java . util . Map ; import org . eclim . Eclim ; import org . eclim . plugin . wst . Wst ; import org . junit . Test ; import static org . junit . Assert . * ; public class HtmlValidateCommandTest { private static final Str... |
<s> package org . eclim . plugin . wst . command . validate ; import java . util . List ; import java . util . Map ; import org . eclim . Eclim ; import org . eclim . plugin . wst . Wst ; import org . junit . Test ; import static org . junit . Assert . * ; public class CssValidateCommandTest { private static final Stri... |
<s> package org . eclim . plugin . wst . command . validate ; import java . util . List ; import java . util . Map ; import org . eclim . Eclim ; import org . eclim . plugin . wst . Wst ; import org . junit . Test ; import static org . junit . Assert . * ; public class XsdValidateCommandTest { private static final Stri... |
<s> package org . eclim . plugin . wst . command . validate ; import java . util . List ; import java . util . Map ; import org . eclim . Eclim ; import org . eclim . plugin . wst . Wst ; import org . junit . Test ; import static org . junit . Assert . * ; public class DtdValidateCommandTest { private static final Stri... |
<s> package org . eclim . plugin . wst ; public class Wst { public static final String TEST_PROJECT = "<STR_LIT>" ; } </s> |
<s> package org . eclim . plugin . wst ; import org . eclim . Services ; import org . eclim . plugin . AbstractPluginResources ; import org . eclim . plugin . core . project . ProjectNatureFactory ; import org . eclipse . wst . jsdt . core . JavaScriptCore ; public class PluginResources extends AbstractPluginResources ... |
<s> package org . eclim . plugin . wst . util ; import org . eclim . Services ; import org . eclim . plugin . core . project . ProjectNatureFactory ; import org . eclim . plugin . core . util . ProjectUtils ; import org . eclim . plugin . wst . PluginResources ; import org . eclipse . core . resources . IProject ; impo... |
<s> package org . eclim . plugin . wst . command . complete ; import java . util . ArrayList ; import java . util . List ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Options ; import org . eclim . plugin . core . command . AbstractCommand ; im... |
<s> package org . eclim . plugin . wst . command . complete ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . eclipse . EclimPlugin ; import org . eclim . plugin . core . command . complete . AbstractCodeCompleteCommand ; import org . eclim . plugin . core .... |
<s> package org . eclim . plugin . wst . command . complete ; import org . eclim . command . CommandLine ; import org . eclim . eclipse . EclimPlugin ; import org . eclim . plugin . core . command . complete . AbstractCodeCompleteCommand ; import org . eclim . plugin . core . util . ProjectUtils ; import org . eclipse ... |
<s> package org . eclim . plugin . wst . command . complete ; import java . util . ArrayList ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . plugin . core . command . complete . CodeCompleteResult ; import org . eclipse . jface . text . contentassist . ICo... |
<s> package org . eclim . plugin . wst . command . complete ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclipse . jface . text . contentassist . ICompletionProposal ; import org . eclipse . jface . text . contentassist . IContentAssistProcessor ; import org . ... |
<s> package org . eclim . plugin . wst . command . src ; import java . util . ArrayList ; import java . util . List ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Error ; import org . eclim . command . Options ; import org . eclim . plugin . cor... |
<s> package org . eclim . plugin . wst . command . validate ; import java . util . ArrayList ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Error ; import org . eclim . command . Options ; import org . eclipse . wst . dtd . core . internal . val... |
<s> package org . eclim . plugin . wst . command . validate ; import java . util . ArrayList ; import java . util . List ; import org . eclipse . wst . validation . internal . provisional . core . IMessage ; import org . eclipse . wst . validation . internal . provisional . core . IReporter ; import org . eclipse . wst... |
<s> package org . eclim . plugin . wst . command . validate ; import java . io . ByteArrayOutputStream ; import java . io . FileInputStream ; import java . io . PrintWriter ; import java . util . ArrayList ; import org . apache . commons . lang . StringUtils ; import org . eclim . annotation . Command ; import org . ec... |
<s> package org . eclim . plugin . wst . command . validate ; import java . util . ArrayList ; import org . apache . commons . lang . StringUtils ; import org . eclim . Services ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Error ; import org .... |
<s> package org . eclim . plugin . wst . command . validate ; import org . eclipse . wst . validation . internal . provisional . core . IValidationContext ; public class ValidationContext implements IValidationContext { private String [ ] uris ; public ValidationContext ( String uri ) { this . uris = new String [ ] { u... |
<s> package org . eclim . plugin . wst . command . validate ; import java . util . ArrayList ; import org . eclim . annotation . Command ; import org . eclim . command . CommandLine ; import org . eclim . command . Error ; import org . eclim . command . Options ; import org . eclipse . wst . xml . core . internal . val... |
<s> package org . eclim . plugin . wst . command . validate ; import java . net . URLDecoder ; import org . eclim . plugin . core . command . AbstractCommand ; import org . eclim . plugin . core . util . ProjectUtils ; public abstract class WstValidateCommand extends AbstractCommand { private static final String URI_PR... |
<s> package org . eclim . installer . ant ; import java . io . BufferedReader ; import java . io . BufferedWriter ; import java . io . File ; import java . io . FileReader ; import java . io . FileWriter ; import org . apache . commons . io . IOUtils ; import org . apache . commons . lang . StringUtils ; import org . a... |
<s> package org . eclim . installer . ant ; public class UnzipTask extends org . formic . ant . UnzipTask { public void addFeatureset ( FeatureSet set ) { addPatternset ( set ) ; } } </s> |
<s> package org . eclim . installer . ant ; import org . apache . tools . ant . types . PatternSet ; import org . formic . InstallContext ; import org . formic . Installer ; public class FeatureSet extends PatternSet { public FeatureSet ( ) { super ( ) ; createInclude ( ) . setName ( "<STR_LIT>" ) ; createInclude ( ) .... |
<s> package org . eclim . installer . ant ; import java . io . File ; import java . io . FileNotFoundException ; import java . io . FileReader ; import java . io . IOException ; import java . io . OutputStream ; import java . net . Socket ; import java . util . Iterator ; import org . apache . commons . io . IOUtils ; ... |
<s> package org . eclim . installer . ant ; import org . apache . tools . ant . BuildException ; import org . apache . tools . ant . Task ; import org . eclim . installer . step . command . Command ; import org . eclim . installer . step . command . InstallCommand ; public class InstallIUTask extends Task { private Str... |
<s> package org . eclim . installer . ant ; import java . io . File ; import java . io . FilenameFilter ; import org . apache . tools . ant . BuildException ; import org . apache . tools . ant . Project ; import org . apache . tools . ant . ProjectComponent ; import org . apache . tools . ant . taskdefs . condition . C... |
<s> package org . eclim . installer . ant ; import java . util . HashMap ; import org . apache . tools . ant . BuildException ; import org . apache . tools . ant . MagicNames ; import org . apache . tools . ant . Task ; import org . eclim . installer . step . EclipseInfo ; import org . eclim . installer . step . Featur... |
<s> package org . eclim . installer . step ; import java . awt . Component ; import java . io . File ; import java . util . Properties ; import javax . swing . JFileChooser ; import javax . swing . JLabel ; import javax . swing . JPanel ; import org . apache . commons . io . FilenameUtils ; import org . apache . common... |
<s> package org . eclim . installer . step ; import java . util . Properties ; import org . formic . Installer ; import org . formic . wizard . step . gui . InstallStep ; import foxtrot . Worker ; public class EclipseInfoStep extends InstallStep { public EclipseInfoStep ( String name , Properties properties ) { super (... |
<s> package org . eclim . installer . step ; import java . util . Properties ; public class FeatureListStep extends org . formic . wizard . step . gui . FeatureListStep { public FeatureListStep ( String name , Properties properties ) { super ( name , properties ) ; setPreviousEnabled ( false ) ; } } </s> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.