bugged
stringlengths
6
599k
fixed
stringlengths
10
599k
__index_level_0__
int64
0
1.13M
public void doTag(XMLOutput output) throws Exception { Project project = getAntProject(); String tagName = getTagName(); Object parentObject = null; // must be a datatype. TaskSource ancestor = (TaskSource) findAncestorWithClass( TaskSource.class ); if ( ancestor != null ) ...
public void doTag(XMLOutput output) throws Exception { Project project = getAntProject(); String tagName = getTagName(); Object parentObject = null; // must be a datatype. TaskSource ancestor = (TaskSource) findAncestorWithClass( TaskSource.class ); if ( ancestor != null ) ...
1,110,310
public int getAvgLength() { return avgLength; }
public double getAvgLength() { return avgLength; }
1,110,311
public void setAvgLength(int avgLength) { this.avgLength = avgLength; }
public void setAvgLength(double avgLength) { this.avgLength = avgLength; }
1,110,312
public void paintComponent(Graphics g){ Graphics2D g2 = (Graphics2D) g; Dimension size = getSize(); Dimension pref = getPreferredSize(); Rectangle visRect = getVisibleRect(); /* boxSize = ((clipRect.width-2*H_BORDER)/dPrimeTable.length-1); if (boxSize < 12){boxSize=1...
public void paintComponent(Graphics g){ Graphics2D g2 = (Graphics2D) g; Dimension size = getSize(); Dimension pref = getPreferredSize(); Rectangle visRect = getVisibleRect(); /* boxSize = ((clipRect.width-2*H_BORDER)/dPrimeTable.length-1); if (boxSize < 12){boxSize=1...
1,110,313
public void paintComponent(Graphics g){ Graphics2D g2 = (Graphics2D) g; Dimension size = getSize(); Dimension pref = getPreferredSize(); Rectangle visRect = getVisibleRect(); /* boxSize = ((clipRect.width-2*H_BORDER)/dPrimeTable.length-1); if (boxSize < 12){boxSize=1...
public void paintComponent(Graphics g){ Graphics2D g2 = (Graphics2D) g; Dimension size = getSize(); Dimension pref = getPreferredSize(); Rectangle visRect = getVisibleRect(); /* boxSize = ((clipRect.width-2*H_BORDER)/dPrimeTable.length-1); if (boxSize < 12){boxSize=1...
1,110,314
public void paintComponent(Graphics g){ Graphics2D g2 = (Graphics2D) g; Dimension size = getSize(); Dimension pref = getPreferredSize(); Rectangle visRect = getVisibleRect(); /* boxSize = ((clipRect.width-2*H_BORDER)/dPrimeTable.length-1); if (boxSize < 12){boxSize=1...
public void paintComponent(Graphics g){ Graphics2D g2 = (Graphics2D) g; Dimension size = getSize(); Dimension pref = getPreferredSize(); Rectangle visRect = getVisibleRect(); /* boxSize = ((clipRect.width-2*H_BORDER)/dPrimeTable.length-1); if (boxSize < 12){boxSize=1...
1,110,315
protected JellyContext createContext( HttpServletRequest req, HttpServletResponse res) { JellyContext ctx = new JellyContext(); ctx.setVariable(REQUEST, req); ctx.setVariable(RESPONSE, res); return ctx; }
protected JellyContext createContext( HttpServletRequest req, HttpServletResponse res) { JellyContext ctx = new JellyServletContext(getServletContext()); ctx.setVariable(REQUEST, req); ctx.setVariable(RESPONSE, res); return ctx; }
1,110,316
protected void doRequest(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { JellyContext context = createContext(req, res); URL template = getTemplate(req); try { runScript(template, context, req, res); } catch (Exception e) { error(req, res, e); } }
protected void doRequest(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { JellyContext context = createContext(req, res); try { runScript(template, context, req, res); } catch (Exception e) { error(req, res, e); } }
1,110,317
protected void doRequest(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { JellyContext context = createContext(req, res); URL template = getTemplate(req); try { runScript(template, context, req, res); } catch (Exception e) { error(req, res, e); } }
protected void doRequest(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException { JellyContext context = createContext(req, res); URL template = getTemplate(req); try { URL script = getScript(req); runScript(script, context, req, res); } catch (Exception e) { error(req, res,...
1,110,318
protected void error( HttpServletRequest request, HttpServletResponse response, Exception cause) throws ServletException, IOException { StringBuffer html = new StringBuffer(); html.append("<html>"); html.append("<title>Error</title>"); html.append("<body bgcolor=\"#ffffff\">"); html.append("<h2>JellyServle...
protected void error( HttpServletRequest request, HttpServletResponse response, Exception cause) throws ServletException, IOException { StringBuffer html = new StringBuffer(); html.append("<html>"); html.append("<title>Error</title>"); html.append("<body bgcolor=\"#ffffff\">"); html.append("<h2>JellyServle...
1,110,319
public void doTag(XMLOutput output) { if (question != null) { if (defaultInput != null) { System.out.println(question + " [" + defaultInput + "]"); } else { System.out.println(question); } // The prompt should be just before the user's...
public void doTag(XMLOutput output) { if (question != null) { if (defaultInput != null) { System.out.println(question + " [" + defaultInput + "]"); } else { System.out.println(question); } // The prompt should be just before the user's...
1,110,320
public void actionPerformed(ActionEvent evt) { // This is one of the few JDIalogs that can not get replaced // with a call to ArchitectPanelBuilder, because an About // box must have only ONE button... final JDialog d = new JDialog(ArchitectFrame.getMainInstance(), "About the Power*Architect"); JPanel c...
public void actionPerformed(ActionEvent evt) { // This is one of the few JDIalogs that can not get replaced // with a call to ArchitectPanelBuilder, because an About // box must have only ONE button... final JDialog d = new JDialog(ArchitectFrame.getMainInstance(), "About the Power*Architect"); JPanel c...
1,110,321
public TableEditPanel(SQLTable t) { super(new FormLayout()); addUndoEventListener(ArchitectFrame.getMainInstance().getProject().getUndoManager().getEventAdapter()); add(new JLabel("Table Name")); add(name = new JTextField("", 30)); add(new JLabel("Primary Key Name")); add(pkName = new JTextField("", 30)); add(n...
public TableEditPanel(SQLTable t) { super(new FormLayout()); addUndoEventListener(ArchitectFrame.getMainInstance().getProject().getUndoManager().getEventAdapter()); add(new JLabel("Table Name")); add(name = new JTextField("", 30)); add(new JLabel("Primary Key Name")); add(pkName = new JTextField("", 30)); add(n...
1,110,322
public void discardChanges() { fireUndoCompoundEvent(new UndoCompoundEvent(this,EventTypes.PROPERTY_CHANGE_GROUP_END,"Ending new compound edit event in table edit panel")); }
public void discardChanges() { }
1,110,324
public void doTag(final XMLOutput output) throws Exception { getGoal(getName()).addPostGoalCallback( new PostGoalCallback() { public void firePostGoal(Goal goal) throws Exception { // lets run the body log.info( "Running post goal: " + g...
public void doTag(final XMLOutput output) throws Exception { getGoal(getName()).addPostGoalCallback( new PostGoalCallback() { public void firePostGoal(Goal goal) throws Exception { // lets run the body log.info( "Running post goal: " + g...
1,110,325
public void firePostGoal(Goal goal) throws Exception { // lets run the body log.info( "Running post goal: " + getName() ); getBody().run( context, output); }
public void firePostGoal(Goal goal) throws Exception { // lets run the body log.info( "Running post goal: " + getName() ); invokeBody( output); }
1,110,326
public static void main(String[] args) throws Exception{ Runtime.getRuntime().addShutdownHook(new Thread(){ public void run(){ logger.info("jManage shutting down..."); DBUtils.shutdownDB(); } }); if (System.getSecurityManager() == null) { ...
public static void main(String[] args) throws Exception{ Runtime.getRuntime().addShutdownHook(new Thread(){ public void run(){ logger.info("jManage shutting down..."); DBUtils.shutdownDB(); } }); if (System.getSecurityManager() == null) { ...
1,110,327
private void argHandler(String[] args){ argHandlerMessages = new Vector(); int maxDistance = -1; //this means that user didn't specify any output type if it doesn't get changed below blockOutputType = -1; double hapThresh = -1; double minimumMAF=-1; double spacingThr...
private void argHandler(String[] args){ argHandlerMessages = new Vector(); int maxDistance = -1; //this means that user didn't specify any output type if it doesn't get changed below blockOutputType = -1; double hapThresh = -1; double minimumMAF=-1; double spacingThr...
1,110,328
private void argHandler(String[] args){ argHandlerMessages = new Vector(); int maxDistance = -1; //this means that user didn't specify any output type if it doesn't get changed below blockOutputType = -1; double hapThresh = -1; double minimumMAF=-1; double spacingThr...
private void argHandler(String[] args){ argHandlerMessages = new Vector(); int maxDistance = -1; //this means that user didn't specify any output type if it doesn't get changed below blockOutputType = -1; double hapThresh = -1; double minimumMAF=-1; double spacingThr...
1,110,329
public static void main(String[] args) { final JFrame jx = new JFrame("Test"); jx.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); final StatusComponent statusComponent = new StatusComponent("Test"); statusComponent.setText("Unknown error"); statusComponent.setResult(status); ...
public static void main(String[] args) { final JFrame jx = new JFrame("Test"); jx.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); final StatusComponent statusComponent = new StatusComponent(); statusComponent.setText("Unknown error"); statusComponent.setResult(status); JPan...
1,110,331
public StatusComponent(String text) { super(text); setIcon(StatusIcon.getNullIcon()); }
public StatusComponent(String text) { super(text); setIcon(StatusIcon.getNullIcon()); }
1,110,332
public void doTag(XMLOutput output) throws Exception { StylesheetTag tag = (StylesheetTag) findAncestorWithClass( StylesheetTag.class ); if (tag == null) { throw new JellyException( "<applyTemplates> tag must be inside a <stylesheet> tag" ); } Styles...
public void doTag(XMLOutput output) throws Exception { StylesheetTag tag = (StylesheetTag) findAncestorWithClass( StylesheetTag.class ); if (tag == null) { throw new JellyException( "<applyTemplates> tag must be inside a <stylesheet> tag" ); } Styles...
1,110,333
protected TagScript createStaticTag( final String namespaceURI, final String localName, final String qName, Attributes list) throws SAXException { try { StaticTag tag = new StaticTag( namespaceURI, localName, qName ); StaticTagScript script = new Stati...
protected TagScript createStaticTag( final String namespaceURI, final String localName, final String qName, Attributes list) throws SAXException { try { StaticTag tag = new StaticTag( namespaceURI, localName, qName ); StaticTagScript script = new Stati...
1,110,335
protected TagScript createStaticTag( final String namespaceURI, final String localName, final String qName, Attributes list) throws SAXException { try { StaticTag tag = new StaticTag( namespaceURI, localName, qName ); StaticTagScript script = new Stati...
protected TagScript createStaticTag( final String namespaceURI, final String localName, final String qName, Attributes list) throws SAXException { try { StaticTag tag = new StaticTag( namespaceURI, localName, qName ); StaticTagScript script = new Stati...
1,110,336
public Vector findTags() { tags = new Vector(); untagged = new Vector(); taggedSoFar = 0; //potentialTagsHash stores the PotentialTag objects keyed on the corresponding sequences Hashtable potentialTagByVarSeq = new Hashtable(); PotentialTagComparator ptcomp = new Potential...
public Vector findTags() { tags = new Vector(); untagged = new Vector(); taggedSoFar = 0; //potentialTagsHash stores the PotentialTag objects keyed on the corresponding sequences Hashtable potentialTagByVarSeq = new Hashtable(); PotentialTagComparator ptcomp = new Potential...
1,110,337
private void peelBack(Vector tagsToBePeeled){ Hashtable blockTagsByAllele = new Hashtable(); HashSet snpsInBlockTags = new HashSet(); debugPrint("starting peelback. untagged.size() = " + untagged.size()); Vector availTagSNPs = new Vector(); for (int j = 0; j < tags.size(); j++){ ...
private void peelBack(Vector tagsToBePeeled){ Hashtable blockTagsByAllele = new Hashtable(); HashSet snpsInBlockTags = new HashSet(); debugPrint("starting peelback. untagged.size() = " + untagged.size()); Vector availTagSNPs = new Vector(); for (int j = 0; j < tags.size(); j++){ ...
1,110,339
public void doTag(XMLOutput output) throws JellyTagException { Object answer = null; if ( value != null ) { answer = value.evaluate(context); } else { answer = getBodyText(isEncode()); } if ( var != null ) { if ( scope != null ) { ...
public void doTag(XMLOutput output) throws JellyTagException { Object answer = null; if ( value != null ) { answer = value.evaluate(context); } else { answer = getBodyText(isEncode()); } if ( var != null ) { if ( scope != null ) { ...
1,110,340
public void addAttribute(String name, Expression expression) { if (log.isDebugEnabled()) { log.debug("adding attribute name: " + name + " expression: " + expression); } attributes.put(name, expression); }
public void addAttribute(String name, Expression expression) { if (log.isDebugEnabled()) { log.debug("adding attribute name: " + name + " expression: " + expression); } attributes.put(name, new ExpressionAttribute(name,expression)); }
1,110,341
public void run(JellyContext context, XMLOutput output) throws JellyTagException { URL rootURL = context.getRootURL(); URL currentURL = context.getCurrentURL(); try { Tag tag = getTag(context); if ( tag == null ) { return; } tag.setCont...
public void run(JellyContext context, XMLOutput output) throws JellyTagException { URL rootURL = context.getRootURL(); URL currentURL = context.getCurrentURL(); try { Tag tag = getTag(context); if ( tag == null ) { return; } tag.setCont...
1,110,342
public JellyBuildListener(XMLOutput out) { this.taskStack = new Stack(); this.out = out; }
public JellyBuildListener(XMLOutput out) { this.taskStack = new Stack(); this.out = out; this.debug = false; }
1,110,344
public void doTag(XMLOutput output) throws Exception { if ((rawDataSource == null) && dataSourceSpecified) { throw new JellyException(Resources.getMessage("SQL_DATASOURCE_NULL")); } DataSource dataSource = DataSourceUtil.getDataSource(rawDataSource, context); try { ...
public void doTag(XMLOutput output) throws Exception { if ((rawDataSource == null) && dataSourceSpecified) { throw new JellyException(Resources.getMessage("SQL_DATASOURCE_NULL")); } DataSource dataSource = DataSourceUtil.getDataSource(rawDataSource, context); try { ...
1,110,345
public void doTag(XMLOutput output) throws MissingAttributeException, JellyTagException { if (var == null) { throw new MissingAttributeException("var"); } if (file == null && uri == null) { throw new JellyTagException( "This tag must have a 'file' or 'uri' specified" ); ...
public void doTag(XMLOutput output) throws MissingAttributeException, JellyTagException { if (var == null) { throw new MissingAttributeException("var"); } if (file == null && uri == null) { throw new JellyTagException( "This tag must have a 'file' or 'uri' specified" ); ...
1,110,347
public void doTag(XMLOutput output) throws JellyTagException { ConsumerTag tag = (ConsumerTag) findAncestorWithClass(ConsumerTag.class); if (tag == null) { throw new JellyTagException("This tag must be nested within a ConsumerTag like the subscribe tag"); } final JellyContext childContext = context.newJell...
public void doTag(XMLOutput output) throws JellyTagException { ConsumerTag tag = (ConsumerTag) findAncestorWithClass(ConsumerTag.class); if (tag == null) { throw new JellyTagException("This tag must be nested within a ConsumerTag like the subscribe tag"); } final JellyContext childContext = context.newJell...
1,110,348
public void onMessage(Message message) { childContext.setVariable(var, childContext); try { script.run(childContext, childOutput); } catch (Exception e) { log.error("Caught exception processing message: " + message + ". Exception: " + e, e); } }
public void onMessage(Message message) { childContext.setVariable(var, message); try { script.run(childContext, childOutput); } catch (Exception e) { log.error("Caught exception processing message: " + message + ". Exception: " + e, e); } }
1,110,349
Vector doSFS(){ double cutHighCI = 0.98; double cutLowCI = 0.70; double mafThresh = 0.10; double[] cutLowCIVar = {0,0,0.80,0.50,0.50}; double[] maxDist = {0,0,20000,30000,1000000}; double recHighCI = 0.90; int numStrong = 0; int numRec = 0; int numInGroup = 0; ...
Vector doSFS(){ double cutHighCI = 0.98; double cutLowCI = 0.70; double mafThresh = 0.10; double[] cutLowCIVar = {0,0,0.80,0.50,0.50}; double[] maxDist = {0,0,20000,30000,1000000}; double recHighCI = 0.90; int numStrong = 0; int numRec = 0; int numInGroup = 0; ...
1,110,351
Vector doSFS(){ double cutHighCI = 0.98; double cutLowCI = 0.70; double mafThresh = 0.10; double[] cutLowCIVar = {0,0,0.80,0.50,0.50}; double[] maxDist = {0,0,20000,30000,1000000}; double recHighCI = 0.90; int numStrong = 0; int numRec = 0; int numInGroup = 0; ...
Vector doSFS(){ double cutHighCI = 0.98; double cutLowCI = 0.70; double mafThresh = 0.10; double[] cutLowCIVar = {0,0,0.80,0.50,0.50}; double[] maxDist = {0,0,20000,30000,1000000}; double recHighCI = 0.90; int numStrong = 0; int numRec = 0; int numInGroup = 0; ...
1,110,352
static Vector doSFS(PairwiseLinkage[][] dPrime){ double cutHighCI = 0.98; double cutLowCI = 0.70; double mafThresh = 0.10; double[] cutLowCIVar = {0,0,0.80,0.50,0.50}; double[] maxDist = {0,0,20000,30000,1000000}; double recHighCI = 0.90; int numStrong = 0; int numRe...
static Vector doSFS(PairwiseLinkage[][] dPrime){ double cutHighCI = 0.98; double cutLowCI = 0.70; double mafThresh = 0.05; double[] cutLowCIVar = {0,0,0.80,0.50,0.50}; double[] maxDist = {0,0,20000,30000,1000000}; double recHighCI = 0.90; int numStrong = 0; int numRe...
1,110,353
public static void addApplication(ApplicationConfig config) throws DuplicateApplicationNameException { synchronized(writeLock){ // validate the application name validateAppName(config.getName()); applicationConfigs.add(config); saveConfig(); } }
public static void addApplication(ApplicationConfig config) throws DuplicateApplicationNameException { synchronized(writeLock){ // validate the application name validateAppName(config.getName(), null); applicationConfigs.add(config); saveConfig(); } ...
1,110,354
public static void updateApplication(ApplicationConfig config) throws DuplicateApplicationNameException { assert config != null: "application config is null"; synchronized(writeLock){ // validate the application name validateAppName(config.getName()); int index ...
public static void updateApplication(ApplicationConfig config) throws DuplicateApplicationNameException { assert config != null: "application config is null"; synchronized(writeLock){ // validate the application name validateAppName(config.getName(), config.getApplicationI...
1,110,355
private static void validateAppName(String appName) throws DuplicateApplicationNameException { for(Iterator it=getApplications().iterator(); it.hasNext(); ){ ApplicationConfig appConfig = (ApplicationConfig)it.next(); if((appConfig.getName().toUpperCase()).equals(appName.toUpperC...
private static void validateAppName(String appName, String applicationId) throws DuplicateApplicationNameException { for(Iterator it=getApplications().iterator(); it.hasNext(); ){ ApplicationConfig appConfig = (ApplicationConfig)it.next(); if((appConfig.getName().toUpperCase()).e...
1,110,356
private static void validateAppName(String appName) throws DuplicateApplicationNameException { for(Iterator it=getApplications().iterator(); it.hasNext(); ){ ApplicationConfig appConfig = (ApplicationConfig)it.next(); if((appConfig.getName().toUpperCase()).equals(appName.toUpperC...
private static void validateAppName(String appName) throws DuplicateApplicationNameException { for(Iterator it=getApplications().iterator(); it.hasNext(); ){ ApplicationConfig appConfig = (ApplicationConfig)it.next(); if(!appConfig.getApplicationId().equals(applicationId) && (app...
1,110,357
public Dimension getPreferredSize() { Rectangle cbounds = null; //int minx = Integer.MAX_VALUE, miny = Integer.MAX_VALUE, maxx = 0, maxy = 0; int minx = 0, miny = 0, maxx = 0, maxy = 0; for (int i = 0; i < contentPane.getComponentCount(); i++) { Component c = contentPane.getComponent(i); if (c.isVisible()) { ...
public Dimension getPreferredSize() { Rectangle cbounds = null; //int minx = Integer.MAX_VALUE, miny = Integer.MAX_VALUE, maxx = 0, maxy = 0; int minx = 0, miny = 0, maxx = 0, maxy = 0; for (int i = 0; i < contentPane.getComponentCount(); i++) { Component c = contentPane.getComponent(i); if (c.isVisible()) { ...
1,110,358
public Dimension getPreferredSize() { Rectangle cbounds = null; //int minx = Integer.MAX_VALUE, miny = Integer.MAX_VALUE, maxx = 0, maxy = 0; int minx = 0, miny = 0, maxx = 0, maxy = 0; for (int i = 0; i < contentPane.getComponentCount(); i++) { Component c = contentPane.getComponent(i); if (c.isVisible()) { ...
public Dimension getPreferredSize() { Rectangle cbounds = null; //int minx = Integer.MAX_VALUE, miny = Integer.MAX_VALUE, maxx = 0, maxy = 0; int minx = 0, miny = 0, maxx = 0, maxy = 0; for (int i = 0; i < contentPane.getComponentCount(); i++) { Component c = contentPane.getComponent(i); if (c.isVisible()) { ...
1,110,360
public synchronized TablePane importTableCopy(SQLTable source, Point preferredLocation) throws ArchitectException { SQLTable newTable = SQLTable.getDerivedInstance(source, db); // adds newTable to db String key = source.getTableName().toLowerCase(); Integer suffix = (Integer) tableNames.get(key); if (suffix == nul...
public synchronized TablePane importTableCopy(SQLTable source, Point preferredLocation) throws ArchitectException { SQLTable newTable = SQLTable.getDerivedInstance(source, db); // adds newTable to db String key = source.getTableName().toLowerCase(); Integer suffix = (Integer) tableNames.get(key); if (suffix == nul...
1,110,363
public void setDatabase(SQLDatabase newdb) { if (newdb == null) throw new NullPointerException("db must be non-null"); this.db = newdb; db.setIgnoreReset(true); if (db.getConnectionSpec() == null) { DBConnectionSpec dbcs = new DBConnectionSpec(); dbcs.setName("Target Database"); dbcs.setDisplayName("Target D...
public void setDatabase(SQLDatabase newdb) { if (newdb == null) throw new NullPointerException("db must be non-null"); this.db = newdb; db.setIgnoreReset(true); if (db.getConnectionSpec() == null) { DBConnectionSpec dbcs = new DBConnectionSpec(); dbcs.setName("Target Database"); dbcs.setDisplayName("Target D...
1,110,365
public void showDbcsDialog() { if (dbcsDialog == null) { final JDialog d = new JDialog(ArchitectFrame.getMainInstance(), "Target Database Connection"); JPanel cp = new JPanel(new BorderLayout(12,12)); cp.setBorder(BorderFactory.createEmptyBorder(12,12,12,12)); final DBCSPanel dbcsPanel = new DBCSPa...
public void showDbcsDialog() { if (dbcsDialog == null) { final JDialog d = new JDialog(ArchitectFrame.getMainInstance(), "Target Database Connection"); JPanel cp = new JPanel(new BorderLayout(12,12)); cp.setBorder(BorderFactory.createEmptyBorder(12,12,12,12)); final DBCSPanel dbcsPanel = new DBCSPa...
1,110,367
public synchronized List getColumns() throws ArchitectException { populate(); return columnsFolder.getChildren(); }
public synchronized List getColumns() throws ArchitectException { populateColumns(); return columnsFolder.getChildren(); }
1,110,369
public static SQLTable getDerivedInstance(SQLTable source, SQLDatabase parent) throws ArchitectException { source.populate(); SQLTable t = new SQLTable(parent); t.columnsFolder.populated = true; t.importedKeysFolder.populated = true; t.exportedKeysFolder.populated = true; t.tableName = source.tableName; t.rema...
public static SQLTable getDerivedInstance(SQLTable source, SQLDatabase parent) throws ArchitectException { source.populateColumns(); source.populateRelationships(); SQLTable t = new SQLTable(parent); t.columnsFolder.populated = true; t.importedKeysFolder.populated = true; t.exportedKeysFolder.populated = true; ...
1,110,370
public boolean isPopulated() { if (columnsFolder == null || importedKeysFolder == null || exportedKeysFolder == null) { return false; } else { return columnsFolder.isPopulated() && importedKeysFolder.isPopulated() && exportedKeysFolder.isPopulated(); } }
public boolean isPopulated() { if (columnsFolder == null || importedKeysFolder == null || exportedKeysFolder == null) { return false; } else { return columnsFolder.isPopulated() && importedKeysFolder.isPopulated() && exportedKeysFolder.isPopulated(); } }
1,110,371
public void populate() throws ArchitectException { populateColumns(); populateRelationships(); }
public void populate() throws ArchitectException { populateColumns(); populateRelationships(); }
1,110,372
public synchronized void populateRelationships() throws ArchitectException { if (!columnsFolder.isPopulated()) throw new IllegalStateException("Table must be populated before relationships are added"); if (importedKeysFolder.isPopulated()) return; int oldSize = importedKeysFolder.children.size(); try { SQLRelati...
public synchronized void populateRelationships() throws ArchitectException { if (!columnsFolder.isPopulated()) throw new IllegalStateException("Table must be populated before relationships are added"); if (importedKeysFolder.isPopulated()) return; int oldSize = importedKeysFolder.children.size(); try { SQLRelati...
1,110,373
public synchronized void populateRelationships() throws ArchitectException { if (!columnsFolder.isPopulated()) throw new IllegalStateException("Table must be populated before relationships are added"); if (importedKeysFolder.isPopulated()) return; int oldSize = importedKeysFolder.children.size(); try { SQLRelati...
public synchronized void populateRelationships() throws ArchitectException { if (!columnsFolder.isPopulated()) throw new IllegalStateException("Table must be populated before relationships are added"); if (importedKeysFolder.isPopulated()) return; int oldSize = importedKeysFolder.children.size(); try { SQLRelati...
1,110,374
public HaploView(){ try{ fc = new JFileChooser(System.getProperty("user.dir")); }catch(NullPointerException n){ try{ UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName()); fc = new JFileChooser(System.getProperty("user.dir")); ...
public HaploView(){ try{ fc = new JFileChooser(System.getProperty("user.dir")); }catch(NullPointerException n){ try{ UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName()); fc = new JFileChooser(System.getProperty("user.dir")); ...
1,110,375
public void actionPerformed(ActionEvent e) { String command = e.getActionCommand(); if (command.equals(READ_GENOTYPES)){ ReadDataDialog readDialog = new ReadDataDialog("Open new data", this); readDialog.pack(); readDialog.setVisible(true); } else if (command.equ...
public void actionPerformed(ActionEvent e) { String command = e.getActionCommand(); if (command.equals(READ_GENOTYPES)){ ReadDataDialog readDialog = new ReadDataDialog("Open new data", this); readDialog.pack(); readDialog.setVisible(true); } else if (command.equ...
1,110,377
public Object construct(){ dPrimeDisplay=null; changeKey(); theData.generateDPrimeTable(); theData.guessBlocks(BLOX_GABRIEL); //theData.guessBlocks(BLOX_NONE); //for debugging, doesn't call blocks at first ...
public Object construct(){ dPrimeDisplay=null; changeKey(); theData.generateDPrimeTable(); theData.guessBlocks(BLOX_GABRIEL); //theData.guessBlocks(BLOX_NONE); //for debugging, doesn't call blocks at first ...
1,110,378
public static void main(String[] args) { //set defaults Options.setMissingThreshold(1.0); Options.setSpacingThreshold(0.0); Options.setAssocTest(ASSOC_NONE); Options.setHaplotypeDisplayThreshold(1); Options.setMaxDistance(500); Options.setLDColorScheme(STD_SCHEME); ...
public static void main(String[] args) { //set defaults Options.setMissingThreshold(1.0); Options.setSpacingThreshold(0.0); Options.setAssocTest(ASSOC_NONE); Options.setHaplotypeDisplayThreshold(1); Options.setMaxDistance(500); Options.setLDColorScheme(STD_SCHEME); ...
1,110,379
public static void main(String[] args) { //set defaults Options.setMissingThreshold(1.0); Options.setSpacingThreshold(0.0); Options.setAssocTest(ASSOC_NONE); Options.setHaplotypeDisplayThreshold(1); Options.setMaxDistance(500); Options.setLDColorScheme(STD_SCHEME); ...
public static void main(String[] args) { //set defaults Options.setMissingThreshold(1.0); Options.setSpacingThreshold(0.0); Options.setAssocTest(ASSOC_NONE); Options.setHaplotypeDisplayThreshold(1); Options.setMaxDistance(500); Options.setLDColorScheme(STD_SCHEME); ...
1,110,380
public void doTag(XMLOutput output) throws Exception { if (getVar() == null) { throw new IllegalArgumentException("The var attribute cannot be null"); } Document document = null; if (xml == null) { document = parseBody(output); } else { docu...
public void doTag(XMLOutput output) throws Exception { if (getVar() == null) { throw new IllegalArgumentException("The var attribute cannot be null"); } Document document = null; if (xml == null) { document = parseBody(output); } else { docu...
1,110,382
private Element createApplicationClusterElement(ApplicationConfig application){ assert application.isCluster(); Element applicationElement = createApplicationElement(application); Element childApplicationsElement = new Element(ConfigConstants.APPLICATIONS); applicationElement.addContent(...
private Element createApplicationClusterElement(ApplicationConfig application){ assert application.isCluster(); Element applicationElement = createApplicationElement(application); Element childApplicationsElement = new Element(ConfigConstants.APPLICATIONS); applicationElement.addContent(...
1,110,385
public java.util.List listMissingTargetTables() { logger.error("listMissingTargetTables is not implemented"); return java.util.Collections.EMPTY_LIST; }
public java.util.List listMissingTargetTables() { logger.error("listMissingTargetTables is not implemented"); return java.util.Collections.EMPTY_LIST; }
1,110,387
public synchronized void setupDialog() { if (d != null) return; d = new JDialog(ArchitectFrame.getMainInstance(), "Export ETL Transactions to PL Repository"); // set export defaults if necessary if (plexp.getFolderName() == null || plexp.getFolderName().trim().length() == 0) { plexp.setFolderName(PLUtils.to...
public synchronized void setupDialog() { if (d != null) return; d = new JDialog(ArchitectFrame.getMainInstance(), "Export ETL Transactions to PL Repository"); // set export defaults if necessary if (plexp.getFolderName() == null || plexp.getFolderName().trim().length() == 0) { plexp.setFolderName(PLUtils.to...
1,110,388
public void actionPerformed(ActionEvent evt) { plPanel.applyChanges(); if (plexp.getPlDBCS() == null) { JOptionPane.showMessageDialog(plPanel, "You have to select a target database from the list.", "Error", JOptionPane.ERROR_MESSAGE); return; } if (plexp.getPlUsername().trim().length() == ...
public void actionPerformed(ActionEvent evt) { plPanel.applyChanges(); if (plexp.getPlDBCS() == null) { JOptionPane.showMessageDialog(plPanel, "You have to select a target database from the list.", "Error", JOptionPane.ERROR_MESSAGE); return; } if (plexp.getPlUsername().trim().length() == ...
1,110,389
protected void doCreateRelationship() { try { Relationship r = new Relationship(pp, pkTable, fkTable, identifying); pp.add(r); r.repaint(); // XXX: shouldn't be necessary, but it is. } catch (ArchitectException ex) { logger.error("Couldn't create relationship", ex); JOptionPane.showMessageDialog(pp, "Coul...
protected void doCreateRelationship() { try { SQLRelationship model = new SQLRelationship(); model.setName(pkTable.getModel().getName()+"_"+fkTable.getModel().getName()+"_fk"); model.setIdentifying(identifying); model.setPkTable(pkTable.getModel()); model.setFkTable(fkTable.getModel()); pkTable.getModel().addExp...
1,110,390
public void doTag(XMLOutput output) throws JellyTagException { ElementTag tag = (ElementTag) findAncestorWithClass( ElementTag.class ); if ( tag == null ) { throw new JellyTagException( "<attribute> tag must be enclosed inside an <element> tag" ); } tag.setAttributeValue( getN...
public void doTag(XMLOutput output) throws JellyTagException { ElementTag tag = (ElementTag) findAncestorWithClass( ElementTag.class ); if ( tag == null ) { throw new JellyTagException( "<attribute> tag must be enclosed inside an <element> tag" ); } tag.setAttributeValue(getNa...
1,110,391
public boolean isQualified(ApplicationConfig applicationConfig) { ServerConnection serverConnection = null; try { serverConnection = ServerConnector.getServerConnection(applicationConfig); ObjectInfo objectInfo = serverConnection.getObjectInfo(objectName); ...
public boolean isQualified(ApplicationConfig applicationConfig) { ServerConnection serverConnection = null; try { serverConnection = ServerConnector.getServerConnection(applicationConfig); ObjectInfo objectInfo = serverConnection.getObjectInfo(objectName); ...
1,110,392
public CheckDataException(String s){ super(s); }
public CheckDataException(String s){ super(s); }
1,110,393
public DBCS_OkAction(DBCSPanel dbcsPanel, boolean isNew) { super("Ok"); this.dbcsPanel = dbcsPanel; this.isNew = isNew; if (!isNew) { oldName = dbcsPanel.getDbcs().getName(); } else { oldName = null; } }
public DBCS_OkAction(DBCSPanel dbcsPanel, boolean isNew) { super("Ok"); this.dbcsPanel = dbcsPanel; this.isNew = isNew; if (!isNew) { oldName = dbcsPanel.getDbcs().getName(); } else { oldName = null; } }
1,110,394
public void actionPerformed(ActionEvent e) { logger.debug("DBCS Action invoked"); ArchitectDataSource newDS = dbcsPanel.getDbcs(); String curName = null; for (Component c : ((TextPanel)dbcsPanel.getComponents()[0]).getComponents()) { if ("dbNameField".equals(c.getName())){ curName = ((JTextField) c).getText(...
public void actionPerformed(ActionEvent e) { logger.debug("DBCS Action invoked"); ArchitectDataSource newDS = dbcsPanel.getDbcs(); String curName = null; for (Component c : ((TextPanel)dbcsPanel.getComponents()[0]).getComponents()) { if ("dbNameField".equals(c.getName())){ curName = ((JTextField) c).getText(...
1,110,395
public ActionForward execute(WebContext context, ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) { ApplicationForm appForm = ...
public ActionForward execute(WebContext context, ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) { ApplicationForm appForm = ...
1,110,396
private void buildCCSet(PedFile pf, Vector affectedStatus, TreeSet snpsToBeTested){ ArrayList results = new ArrayList(); int numMarkers = Chromosome.getUnfilteredSize(); Vector indList = pf.getUnrelatedIndividuals(); int numInds = indList.size(); if(affectedStatus == null || affec...
private void buildCCSet(PedFile pf, Vector affectedStatus, TreeSet snpsToBeTested){ ArrayList results = new ArrayList(); int numMarkers = Chromosome.getUnfilteredSize(); Vector indList = pf.getUnrelatedIndividuals(); int numInds = indList.size(); if(affectedStatus == null || affec...
1,110,397
private void buildParenTDTTrioSet(PedFile pf, Vector permuteInd, TreeSet snpsToBeTested) throws PedFileException{ Vector results = new Vector(); Vector indList = pf.getAllIndividuals(); if(permuteInd == null || permuteInd.size() != indList.size()) { permuteInd = new Vector(); ...
private void buildParenTDTTrioSet(PedFile pf, Vector permuteInd, TreeSet snpsToBeTested) throws PedFileException{ Vector results = new Vector(); Vector indList = pf.getAllIndividuals(); if(permuteInd == null || permuteInd.size() != indList.size()) { permuteInd = new Vector(); ...
1,110,398
private void buildParenTDTTrioSet(PedFile pf, Vector permuteInd, TreeSet snpsToBeTested) throws PedFileException{ Vector results = new Vector(); Vector indList = pf.getAllIndividuals(); if(permuteInd == null || permuteInd.size() != indList.size()) { permuteInd = new Vector(); ...
private void buildParenTDTTrioSet(PedFile pf, Vector permuteInd, TreeSet snpsToBeTested) throws PedFileException{ Vector results = new Vector(); Vector indList = pf.getAllIndividuals(); if(permuteInd == null || permuteInd.size() != indList.size()) { permuteInd = new Vector(); ...
1,110,399
private void buildParenTDTTrioSet(PedFile pf, Vector permuteInd, TreeSet snpsToBeTested) throws PedFileException{ Vector results = new Vector(); Vector indList = pf.getAllIndividuals(); if(permuteInd == null || permuteInd.size() != indList.size()) { permuteInd = new Vector(); ...
private void buildParenTDTTrioSet(PedFile pf, Vector permuteInd, TreeSet snpsToBeTested) throws PedFileException{ Vector results = new Vector(); Vector indList = pf.getAllIndividuals(); if(permuteInd == null || permuteInd.size() != indList.size()) { permuteInd = new Vector(); ...
1,110,400
private void buildTrioSet(PedFile pf, Vector permuteInd, TreeSet snpsToBeTested) throws PedFileException{ Vector results = new Vector(); Vector indList = pf.getAllIndividuals(); if(permuteInd == null || permuteInd.size() != indList.size()) { permuteInd = new Vector(); for ...
private void buildTrioSet(PedFile pf, Vector permuteInd, TreeSet snpsToBeTested) throws PedFileException{ Vector results = new Vector(); Vector indList = pf.getAllIndividuals(); if(permuteInd == null || permuteInd.size() != indList.size()) { permuteInd = new Vector(); for ...
1,110,401
public void runFileTests(HaploData theData, Vector inputSNPResults) throws HaploViewException { Vector res = new Vector(); if(tests == null || theData == null) { return; } Vector blocks = new Vector(); Vector names = new Vector(); Vector alleles = new Vector(); ...
public void runFileTests(HaploData theData, Vector inputSNPResults) throws HaploViewException { Vector res = new Vector(); if(tests == null || theData == null) { return; } Vector blocks = new Vector(); Vector names = new Vector(); Vector alleles = new Vector(); ...
1,110,402
protected void trimBody() { if ( body instanceof ScriptBlock ) { ScriptBlock block = (ScriptBlock) body; List list = block.getScriptList(); for ( int i = list.size() - 1; i >= 0; i-- ) { Script script = (Script) list.get(i); if ( script instance...
protected void trimBody() { if ( body instanceof ScriptBlock ) { ScriptBlock block = (ScriptBlock) body; List list = block.getScriptList(); for ( int i = list.size() - 1; i >= 0; i-- ) { Script script = (Script) list.get(i); if ( script instance...
1,110,404
public void actionPerformed(ActionEvent e) { String command = e.getActionCommand(); String shortHapInputFileName; if (command == READ_GENOTYPES){ ReadDataDialog readDialog = new ReadDataDialog("Open new data", this); readDialog.pack(); readDialog.setVisible(true); /**if (command == "Open Linkage Fil...
public void actionPerformed(ActionEvent e) { String command = e.getActionCommand(); if (command == READ_GENOTYPES){ ReadDataDialog readDialog = new ReadDataDialog("Open new data", this); readDialog.pack(); readDialog.setVisible(true); /**if (command == "Open Linkage File"){ fc.setSelectedFile(n...
1,110,405
public void actionPerformed(ActionEvent e) { String command = e.getActionCommand(); String shortHapInputFileName; if (command == READ_GENOTYPES){ ReadDataDialog readDialog = new ReadDataDialog("Open new data", this); readDialog.pack(); readDialog.setVisible(true); /**if (command == "Open Linkage Fil...
public void actionPerformed(ActionEvent e) { String command = e.getActionCommand(); String shortHapInputFileName; if (command == READ_GENOTYPES){ ReadDataDialog readDialog = new ReadDataDialog("Open new data", this); readDialog.pack(); readDialog.setVisible(true); /**if (command == "Open Linkage Fil...
1,110,406
public void populate() throws ArchitectException { if (populated) return; logger.debug("SQLCatalog: populate starting"); int oldSize = children.size(); synchronized (parent) { Connection con = null; ResultSet rs = null; try { con = ((SQLDatabase) parent).getConnection(); DatabaseMetaData dbmd = ...
public void populate() throws ArchitectException { if (populated) return; logger.debug("SQLCatalog: populate starting"); int oldSize = children.size(); synchronized (parent) { Connection con = null; ResultSet rs = null; try { con = ((SQLDatabase) parent).getConnection(); DatabaseMetaData dbmd = ...
1,110,409
public void run(Context context, XMLOutput output) throws Exception { if ( var == null ) { throw new IllegalArgumentException( "The var attribute cannot be null" ); } Document document = null; if ( source == null ) { SAXContentHandler handler = new SAXContentHandler...
public void run(JellyContext context, XMLOutput output) throws Exception { if ( var == null ) { throw new IllegalArgumentException( "The var attribute cannot be null" ); } Document document = null; if ( source == null ) { SAXContentHandler handler = new SAXContentHa...
1,110,410
public void run(Context context, XMLOutput output) throws Exception { if ( var == null ) { throw new IllegalArgumentException( "The var attribute cannot be null" ); } Document document = null; if ( source == null ) { SAXContentHandler handler = new SAXContentHandler...
public void run(Context context, XMLOutput output) throws Exception { if ( var == null ) { throw new IllegalArgumentException( "The var attribute cannot be null" ); } Document document = null; if ( source == null ) { SAXContentHandler handler = new SAXContentHandler...
1,110,411
public void doTag(XMLOutput output) throws Exception { if (log.isDebugEnabled()) { log.debug("running with items: " + items); } if (items != null) { Iterator iter = items.evaluateAsIterator(context); if (log.isDebugEnabled()) { log.debug("Iteratin...
public void doTag(XMLOutput output) throws Exception { if (log.isDebugEnabled()) { log.debug("running with items: " + items); } if (items != null) { Iterator iter = items.evaluateAsIterator(context); if (log.isDebugEnabled()) { log.debug("Iteratin...
1,110,412
public void doTag(XMLOutput output) throws Exception { if (log.isDebugEnabled()) { log.debug("running with items: " + items); } if (items != null) { Iterator iter = items.evaluateAsIterator(context); if (log.isDebugEnabled()) { log.debug("Iteratin...
public void doTag(XMLOutput output) throws Exception { if (log.isDebugEnabled()) { log.debug("running with items: " + items); } if (items != null) { Iterator iter = items.evaluateAsIterator(context); if (log.isDebugEnabled()) { log.debug("Iteratin...
1,110,413
public void doTag(XMLOutput output) throws Exception { if (log.isDebugEnabled()) { log.debug("running with items: " + items); } if (items != null) { Iterator iter = items.evaluateAsIterator(context); if (log.isDebugEnabled()) { log.debug("Iteratin...
public void doTag(XMLOutput output) throws Exception { if (log.isDebugEnabled()) { log.debug("running with items: " + items); } if (items != null) { Iterator iter = items.evaluateAsIterator(context); if (log.isDebugEnabled()) { log.debug("Iteratin...
1,110,414
public void doTag(XMLOutput output) throws Exception { if (log.isDebugEnabled()) { log.debug("running with items: " + items); } if (items != null) { Iterator iter = items.evaluateAsIterator(context); if (log.isDebugEnabled()) { log.debug("Iteratin...
public void doTag(XMLOutput output) throws Exception { if (log.isDebugEnabled()) { log.debug("running with items: " + items); } if (items != null) { Iterator iter = items.evaluateAsIterator(context); if (log.isDebugEnabled()) { log.debug("Iteratin...
1,110,415
public void doTag(XMLOutput output) throws Exception { if (log.isDebugEnabled()) { log.debug("running with items: " + items); } if (items != null) { Iterator iter = items.evaluateAsIterator(context); if (log.isDebugEnabled()) { log.debug("Iteratin...
public void doTag(XMLOutput output) throws Exception { if (log.isDebugEnabled()) { log.debug("running with items: " + items); } if (items != null) { Iterator iter = items.evaluateAsIterator(context); if (log.isDebugEnabled()) { log.debug("Iteratin...
1,110,416
protected void fireTreeStructureChanged(TreeModelEvent e) { final TreeModelEvent ev =e; Runnable notifier = new Runnable(){ public void run() { Iterator it = treeModelListeners.iterator(); while (it.hasNext()) { ((TreeModelListener) it.next()).treeStructureChanged(ev); } } };// TODO FIXME XXX Re...
protected void fireTreeStructureChanged(TreeModelEvent e) { logger.debug("firing TreeStructuredChanged. source="+e.getSource()); final TreeModelEvent ev =e; Runnable notifier = new Runnable(){ public void run() { Iterator it = treeModelListeners.iterator(); while (it.hasNext()) { ((TreeModelListener) it...
1,110,420
public PhotoFolderTreeModel() { super(); nodeMapper = new DefaultFolderNodeMapper(); }
public PhotoFolderTreeModel( FolderNodeMapper mapper ) { super(); nodeMapper = new DefaultFolderNodeMapper(); }
1,110,421
public PhotoFolderTreeModel() { super(); nodeMapper = new DefaultFolderNodeMapper(); }
public PhotoFolderTreeModel() { super(); nodeMapper = mapper; }
1,110,422
protected void fireTreeModelEvent( TreeModelEvent e ) { Iterator iter = treeModelListeners.iterator(); while ( iter.hasNext() ) { TreeModelListener l = (TreeModelListener) iter.next(); log.warn( "Sending treeModelEvent" ); l.treeStructureChanged( e ); } }
protected void fireTreeModelEvent( TreeModelEvent e ) { Iterator iter = treeModelListeners.iterator(); while ( iter.hasNext() ) { final TreeModelListener l = (TreeModelListener) iter.next(); SwingUtilities.invokeLater( new Runnable() { public void run() { l.treeStructureChanged( fe ); } }); log.warn( "Sendi...
1,110,423
protected void fireTreeModelEvent( TreeModelEvent e ) { Iterator iter = treeModelListeners.iterator(); while ( iter.hasNext() ) { TreeModelListener l = (TreeModelListener) iter.next(); log.warn( "Sending treeModelEvent" ); l.treeStructureChanged( e ); } }
protected void fireTreeModelEvent( TreeModelEvent e ) { Iterator iter = treeModelListeners.iterator(); while ( iter.hasNext() ) { TreeModelListener l = (TreeModelListener) iter.next(); log.warn( "Sending treeModelEvent" ); } }
1,110,424
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
1,110,425
public SQLSchema(SQLObject parent, String name) { this.parent = parent; this.schemaName = name; this.children = new LinkedList(); }
public SQLSchema(SQLObject parent, String name) { this.parent = parent; this.schemaName = name; this.children = new LinkedList(); }
1,110,426
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
1,110,427
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
1,110,428
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
1,110,429
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
1,110,430
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
1,110,431
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
1,110,432
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
public void actionPerformed (ActionEvent e){ String command = e.getActionCommand(); if (dpButton.isSelected()){ if(txtButton.isSelected()){ adjButton.setEnabled(true); compressCheckBox.setEnabled(false); }else{ compressCheckBox.setEnab...
1,110,433