bugged
stringlengths
6
599k
fixed
stringlengths
10
599k
__index_level_0__
int64
0
1.13M
void loadSacFile(Element dsElement, File sacFile) throws IOException, FissuresException { if (excludes.contains(sacFile.getName())) { return; } // end of if (excludes.contains(sacFile.getName())) if (paramRefs.containsValue(sacFile.getName())) { return; } // end of ...
void loadSacFile(Element dsElement, File sacFile) throws IOException, FissuresException { if (excludes.contains(sacFile.getName())) { return; } // end of if (excludes.contains(sacFile.getName())) if (paramRefs.containsValue(sacFile.getName())) { return; } // end of ...
1,118,342
void loadSacFile(Element dsElement, File sacFile) throws IOException, FissuresException { if (excludes.contains(sacFile.getName())) { return; } // end of if (excludes.contains(sacFile.getName())) if (paramRefs.containsValue(sacFile.getName())) { return; } // end of ...
void loadSacFile(Element dsElement, File sacFile) throws IOException, FissuresException { if (excludes.contains(sacFile.getName())) { return; } // end of if (excludes.contains(sacFile.getName())) if (paramRefs.containsValue(sacFile.getName())) { return; } // end of ...
1,118,343
public static void main (String[] args) { if (args.length < 4) { System.err.println("Usage: java edu.sc.seis.fissuresUtil.sac.SacDirToDataSet -base url -dir directoryPath -name datasetname [-exclude file] [-paramRef name file]"); return; } // end of if (args.length != 2) S...
public static void main (String[] args) { if (args.length < 4) { System.err.println("Usage: java edu.sc.seis.fissuresUtil.sac.SacDirToDataSet -base url -dir directoryPath -name datasetname [-exclude file] [-paramRef name file]"); return; } // end of if (args.length != 2) S...
1,118,344
public int sort(DataSetSeismogram seismo, String name){ int i = 0; while(i < seismos.size() && ((String)seismos.get(i)).compareToIgnoreCase(name) < 0){ i++; } seismos.add(i, name); return i; }
public int sort(DataSetSeismogram seismo, String name){ int i = 0; while(i < names.size() && ((String)names.get(i)).compareToIgnoreCase(name) < 0){ i++; } seismos.add(i, name); return i; }
1,118,346
public int sort(DataSetSeismogram seismo, String name){ int i = 0; while(i < seismos.size() && ((String)seismos.get(i)).compareToIgnoreCase(name) < 0){ i++; } seismos.add(i, name); return i; }
public int sort(DataSetSeismogram seismo, String name){ int i = 0; while(i < seismos.size() && ((String)seismos.get(i)).compareToIgnoreCase(name) < 0){ i++; } names.add(i, name); return i; }
1,118,347
public void setUp() { try { customClosure_ = new NATObject(); customClosure_.meta_defineField(AGSymbol.alloc("apply"), new NativeClosure(customClosure_) { public ATObject base_apply(ATTable args) throws InterpreterException { ATTable apply_args = get(args, 1).base_asTable(); assertEquals(42, getNbr(app...
public void setUp() { try { customClosure_ = new NATObject(); customClosure_.meta_defineField(AGSymbol.jAlloc("apply"), new NativeClosure(customClosure_) { public ATObject base_apply(ATTable args) throws InterpreterException { ATTable apply_args = get(args, 1).base_asTable(); assertEquals(42, getNbr(ap...
1,118,348
public void setUp() { try { customClosure_ = new NATObject(); customClosure_.meta_defineField(AGSymbol.alloc("apply"), new NativeClosure(customClosure_) { public ATObject base_apply(ATTable args) throws InterpreterException { ATTable apply_args = get(args, 1).base_asTable(); assertEquals(42, getNbr(app...
public void setUp() { try { customClosure_ = new NATObject(); customClosure_.meta_defineField(AGSymbol.alloc("apply"), new NativeClosure(customClosure_) { public ATObject base_apply(ATTable args) throws InterpreterException { ATTable apply_args = get(args, 1).base_asTable(); assertEquals(42, getNbr(app...
1,118,349
public void setUp() { try { customClosure_ = new NATObject(); customClosure_.meta_defineField(AGSymbol.alloc("apply"), new NativeClosure(customClosure_) { public ATObject base_apply(ATTable args) throws InterpreterException { ATTable apply_args = get(args, 1).base_asTable(); assertEquals(42, getNbr(app...
public void setUp() { try { customClosure_ = new NATObject(); customClosure_.meta_defineField(AGSymbol.alloc("apply"), new NativeClosure(customClosure_) { public ATObject base_apply(ATTable args) throws InterpreterException { ATTable apply_args = get(args, 1).base_asTable(); assertEquals(42, getNbr(app...
1,118,350
public void testCoercedMetalevelInvocation() { try { ATClosure coercedObject = customClosure_.base_asClosure(); assertTrue(coercedObject.meta_respondsTo(AGSymbol.alloc("apply")).asNativeBoolean().javaValue); } catch (InterpreterException e) { fail(e.getMessage()); } }
public void testCoercedMetalevelInvocation() { try { ATClosure coercedObject = customClosure_.base_asClosure(); assertTrue(coercedObject.meta_respondsTo(AGSymbol.jAlloc("apply")).asNativeBoolean().javaValue); } catch (InterpreterException e) { fail(e.getMessage()); } }
1,118,351
private String constructString(String initialBit, List sections){ Iterator it = sections.iterator(); while(it.hasNext()){ initialBit += "<br/>\n" + constructString((Section)it.next()); } return initialBit; }
private String constructString(String initialBit, List sections){ Iterator it = sections.iterator(); while(it.hasNext()){ initialBit += "<hr/><br/>\n" + constructString((Section)it.next()); } return initialBit; }
1,118,353
private String makeDivider(int len){ return "<hline/>"; }
private String makeDivider(int len){ return "<hr/>"; }
1,118,354
public void report(String message, Throwable e, List sections) throws IOException{ File outFile = new File(directory, "Exception_"+lastFileNum+".html"); appendToIndexFile(outFile, e); BufferedWriter bw = new BufferedWriter(new FileWriter(outFile)); String str = getHeader(e, lastFileNum);...
public void report(String message, Throwable e, List sections) throws IOException{ File outFile = new File(directory, "Exception_"+lastFileNum+".html"); appendToIndexFile(outFile, e); BufferedWriter bw = new BufferedWriter(new FileWriter(outFile)); String str = getHeader(e, lastFileNum);...
1,118,355
public abstract BwCalSuiteWrapper getCalSuite(String name) throws CalFacadeException;
public abstract BwCalSuiteWrapper getCalSuite() throws CalFacadeException;
1,118,356
public String doAction(HttpServletRequest request, BwSession sess, PEActionForm form) throws Throwable { boolean alerts = form.getAlertEvent(); /** Check access and set request parameters */ if (alerts) { if (!form.getUserAuth().isAlertUser()) { ...
public String doAction(HttpServletRequest request, BwSession sess, PEActionForm form) throws Throwable { boolean alerts = form.getAlertEvent(); /** Check access and set request parameters */ if (alerts) { if (!form.getUserAuth().isAlertUser()) { ...
1,118,357
public boolean mouseClicked(MouseEvent e){ if (currentPopup != null){ currentPopup.setVisible(false); currentPopup = null; } List stationsUnderMouse = new ArrayList(); synchronized(omgraphics){ Iterator it = omgraphics.iterator(); while(it.hasN...
public boolean mouseClicked(MouseEvent e){ if (currentPopup != null){ currentPopup.setVisible(false); currentPopup = null; } List stationsUnderMouse = new ArrayList(); synchronized(omgraphics){ Iterator it = omgraphics.iterator(); while(it.hasN...
1,118,358
public String doAction(HttpServletRequest request, BwSession sess, PEActionForm form) throws Throwable { /** Check access */ if (!form.getAuthorisedUser()) { return "noAccess"; } /** Set the objects to null so we get new ones. */ form.initFie...
public String doAction(HttpServletRequest request, BwSession sess, PEActionForm form) throws Throwable { /** Check access */ if (!form.getAuthorisedUser()) { return "noAccess"; } /** Set the objects to null so we get new ones. */ initFields(f...
1,118,361
public BwUser getUser() throws CalFacadeException { return user; }
public BwUser getUser() throws CalFacadeException { return user; }
1,118,362
public boolean init(String authenticatedUser, String user, boolean publicAdmin, Groups groups, String synchId, boolean debug) throws CalFacadeException { boolean userAdded = super.init(authenticatedUser, user, ...
public boolean init(String url, String authenticatedUser, String user, boolean publicAdmin, Groups groups, String synchId, boolean debug) throws CalFacadeException { boolean userAdded = super.init(authenticated...
1,118,363
public boolean init(String authenticatedUser, String user, boolean publicAdmin, Groups groups, String synchId, boolean debug) throws CalFacadeException { boolean userAdded = super.init(authenticatedUser, user, ...
public boolean init(String authenticatedUser, String user, boolean publicAdmin, Groups groups, String synchId, boolean debug) throws CalFacadeException { boolean userAdded = super.init(url, authenticatedUser, u...
1,118,364
private void logon(BwUser val) throws CalFacadeException { checkOpen(); throw new CalFacadeUnimplementedException(); }
public void logon(BwUser val) throws CalFacadeException { checkOpen(); throw new CalFacadeUnimplementedException(); }
1,118,365
public void updateUser() throws CalFacadeException { updateUser(getUser()); }
public void updateUser() throws CalFacadeException { updateUser(getUser()); }
1,118,366
public TPosAuthorisationEntriesBean findByAuthorisationIdRsp(java.lang.String p0)throws javax.ejb.FinderException;
public TPosAuthorisationEntriesBean findByAuthorisationIdRsp(java.lang.String p0, IWTimestamp stamp)throws javax.ejb.FinderException;
1,118,369
public KortathjonustanAuthorisationEntries findByAuthorizationCode(java.lang.String p0)throws javax.ejb.FinderException;
public KortathjonustanAuthorisationEntries findByAuthorizationCode(java.lang.String p0, IWTimestamp stamp)throws javax.ejb.FinderException;
1,118,370
public ATObject meta_invoke(ATObject receiver, ATSymbol selector, ATTable arguments) throws InterpreterException { return lookupFrame_.meta_invoke(receiver_, selector, arguments); }
public ATObject meta_invoke(ATObject receiver, ATSymbol selector, ATTable arguments) throws InterpreterException { if(selector == AGSymbol.jAlloc("==")) return super.meta_invoke(this, selector, arguments); return lookupFrame_.meta_invoke(receiver_, selector, arguments); }
1,118,371
protected void decorateView(View containerView, View view, IAdaptable semanticAdapter, String semanticHint, int index, boolean persisted) { if (semanticHint == null) { semanticHint = UMLVisualIDRegistry.getType(org.eclipse.uml2.diagram.profile.edit.parts.EnumerationLiteralsEditPart.VISUAL_ID); view.setType(semant...
protected void decorateView(View containerView, View view, IAdaptable semanticAdapter, String semanticHint, int index, boolean persisted) { if (semanticHint == null) { semanticHint = UMLVisualIDRegistry.getType(EnumerationLiteralsEditPart.VISUAL_ID); view.setType(semanticHint); } super.decorateView(containerVie...
1,118,372
public ATFraction base_abs();
public ATNumeric base_abs();
1,118,373
public ATFraction base_dec();
public ATNumeric base_dec();
1,118,374
public ATFraction base_inc();
public ATNumeric base_inc();
1,118,375
public IdeaMapController(IdeaMap newIdeaMap) { this.ideaMap = newIdeaMap; this.ideaMap.setFocusTraversalKeysEnabled(false); this.ideaMap.setFocusable(true); this.ideaMap.addFocusListener(this); this.ideaMap.addKeyListener(this); this.ideaMap.addMouseListener(this); t...
public IdeaMapController(IdeaMap newIdeaMap) { this.ideaMap = newIdeaMap; this.ideaMap.setFocusTraversalKeysEnabled(false); this.ideaMap.setFocusable(true); this.ideaMap.addFocusListener(this); this.ideaMap.addKeyListener(this); this.ideaMap.addMouseListener(this); t...
1,118,376
public void actionPerformed(ActionEvent e) { ideaMap.requestFocusInWindow(); IdeaView current = ideaMap.getSelectedView(); if (current != null) { unEditIdeaView(current); } }
public void actionPerformed(ActionEvent e) { ideaMap.requestFocusInWindow(); IdeaView current = ideaMap.getSelectedView(); if (current != null) { unEditIdeaView(current); } }
1,118,377
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = deb...
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = deb...
1,118,378
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = deb...
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = deb...
1,118,379
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = deb...
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = deb...
1,118,380
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = deb...
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = deb...
1,118,381
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = deb...
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = deb...
1,118,382
protected TimezoneInfo lookup(String id) throws CalFacadeException { TimezoneInfo tzinfo; tzinfo = (TimezoneInfo)timezones.get(id); return tzinfo; }
protected TimezoneInfo lookup(String id) throws CalFacadeException { TimezoneInfo tzinfo; if (systemHasPrecedence) { tzinfo = (TimezoneInfo)systemTimezones.get(id); } else { tzinfo = (TimezoneInfo)timezones.get(id); } if (tzinfo == null) { if (systemHasPrecedence) { tzinfo = (TimezoneInfo)timezones.get(id); }...
1,118,383
public void testNullContext() { LdapPersonAttributeDao impl = new LdapPersonAttributeDao(); impl.setContextSource(this.contextSource); try { impl.getUserAttributes(Collections.singletonMap("dummy", "seed")); fail("IllegalStateException should have been thrown with ...
public void testNullContext() { LdapPersonAttributeDao impl = new LdapPersonAttributeDao(); impl.setContextSource(this.contextSource); try { impl.getUserAttributes(Collections.singletonMap("username", "seed")); fail("IllegalStateException should have been thrown wi...
1,118,384
public void testNullQuery() { LdapPersonAttributeDao impl = new LdapPersonAttributeDao(); try { impl.getUserAttributes(Collections.singletonMap("dummy", "seed")); fail("IllegalStateException should have been thrown with no context configured"); } catch (Ille...
public void testNullQuery() { LdapPersonAttributeDao impl = new LdapPersonAttributeDao(); try { impl.getUserAttributes(Collections.singletonMap("username", "seed")); fail("IllegalStateException should have been thrown with no context configured"); } catch (I...
1,118,385
public void testProperties() { LdapPersonAttributeDao impl = new LdapPersonAttributeDao(); assertEquals("", impl.getBaseDN()); impl.setBaseDN("BaseDN"); assertEquals("BaseDN", impl.getBaseDN()); impl.setBaseDN(null); assertEquals("", impl.getBaseDN()); ...
public void testProperties() { LdapPersonAttributeDao impl = new LdapPersonAttributeDao(); assertEquals("", impl.getBaseDN()); impl.setBaseDN("BaseDN"); assertEquals("BaseDN", impl.getBaseDN()); impl.setBaseDN(null); assertEquals("", impl.getBaseDN()); ...
1,118,386
public void setComponentsBounds() { int width = panel.getWidth(); int height = panel.getHeight(); int gameBoardWidth = width / 2 - (borderWidth + borderWidth / 2); int gameBoardHeight = gameBoardWidth * 3 / 4; setComponentBounds(gameBoard, borderWidth, borderWidth, gameBoardWidth, ga...
public void setComponentsBounds() { int width = panel.getWidth(); int height = panel.getHeight(); int gameBoardWidth = width / 2 - (borderWidth + borderWidth / 2); int gameBoardHeight = gameBoardWidth * 3 / 4; setComponentBounds(gameBoard, borderWidth, borderWidth, gameBoardWidth, ga...
1,118,387
private ModuleLoader.ModuleInfoContainer getModuleInfo() throws ModuleLoaderException { try { URL jarURL = new URL("jar", "", url +"!/"); JarURLConnection conn = (JarURLConnection)jarURL.openConnection(); Attributes attr = conn.getMainAttributes(); if (attr == null) { throw new ModuleLoaderException("No M...
private ModuleLoader.ModuleInfoContainer getModuleInfo() throws ModuleLoaderException { try { URL jarURL = new URL("jar", "", url +"!/"); JarURLConnection conn = (JarURLConnection)jarURL.openConnection(); Attributes attr = conn.getMainAttributes(); if (attr == null) { throw new ModuleLoaderException("No M...
1,118,388
public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { Graphics2D copy = (Graphics2D)g.create(); if (copy != null) { copy.t...
public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { Graphics2D copy = (Graphics2D)g.create(); if (copy != null) { copy.t...
1,118,389
public void setBottomScaleMapper(ScaleMapper scaleMap) { this.bottomScaleMap = scaleMap; if(scaleMap.getAxisLabel() != null && !scaleMap.getAxisLabel().equals("")){ bottom = 20 + getFontHeight(scaleMap.getAxisLabel()); }else{ bottom = 20; } }
public void setBottomScaleMapper(ScaleMapper scaleMap) { this.bottomScaleMap = scaleMap; if(scaleMap.getAxisLabel() != null && !scaleMap.getAxisLabel().equals("")){ bottom = majorTickLength + 2 * getFontHeight(scaleMap.getAxisLabel()) + 5; }else{ bottom = 20; } }
1,118,390
private void processPlist(Collection plist, Element node, boolean remove) throws WebdavException { Element[] props = getChildren(node); for (int i = 0; i < props.length; i++) { Element prop = props[i]; String ns = prop.getNamespaceURI(); String nm = prop.getLocalName();...
private void processPlist(Collection plist, Element node, boolean remove) throws WebdavException { Element[] props = getChildren(node); for (int i = 0; i < props.length; i++) { Element prop = props[i]; String ns = prop.getNamespaceURI(); String nm = prop.getLocalName();...
1,118,391
private void processPlist(Collection plist, Element node, boolean remove) throws WebdavException { Element[] props = getChildren(node); for (int i = 0; i < props.length; i++) { Element prop = props[i]; String ns = prop.getNamespaceURI(); String nm = prop.getLocalName();...
private void processPlist(Collection plist, Element node, boolean remove) throws WebdavException { Element[] props = getChildren(node); for (int i = 0; i < props.length; i++) { Element prop = props[i]; String ns = prop.getNamespaceURI(); String nm = prop.getLocalName();...
1,118,392
private void processPlist(Collection plist, Element node, boolean remove) throws WebdavException { Element[] props = getChildren(node); for (int i = 0; i < props.length; i++) { Element prop = props[i]; String ns = prop.getNamespaceURI(); String nm = prop.getLocalName();...
private void processPlist(Collection plist, Element node, boolean remove) throws WebdavException { Element[] props = getChildren(node); for (int i = 0; i < props.length; i++) { Element prop = props[i]; String ns = prop.getNamespaceURI(); String nm = prop.getLocalName();...
1,118,393
public ClassFigure() { this.setLayoutManager(new org.eclipse.gmf.internal.codegen.draw2d.GridLayout()); this.setFill(false); this.setFillXOR(false); this.setOutline(false); this.setOutlineXOR(false); this.setLineWidth(1); this.setLineStyle(org.eclipse.draw2d.Graphics.LINE_SOLID); createContents(); }
public ClassFigure() { org.eclipse.gmf.internal.codegen.draw2d.GridLayout layoutThis = new org.eclipse.gmf.internal.codegen.draw2d.GridLayout(); layoutThis.numColumns = 1; layoutThis.makeColumnsEqualWidth = true; layoutThis.horizontalSpacing = 0; layoutThis.verticalSpacing = 0; layoutThis.marginWidth = 0; layoutThi...
1,118,394
public void setStartTime(MicroSecondDate date) { String t = seedDate.format(date); int millis =(int) (date.getMicroSeconds() % 1000000) / 100; setStartTime( t + millis); }
public void setStartTime(MicroSecondDate date) { String t = seedDate.format(date); int millis =(int) (date.getMicroSeconds() % 1000000) / 100; setStartTime( t + millis); }
1,118,395
public void initializeDisplay(DataSetSeismogram seis, String name, VerticalSeismogramDisplay parent){ this.name = name; this.parent = parent; plotPainter = new PlotPainter(); add(plotPainter); ampRegistrar.visibleAmpCalc(timeRegistrar); addSeismogram(seis); setLayout(new OverlayLayout(this)); addComponentListener(n...
public void initializeDisplay(DataSetSeismogram seis, String name, VerticalSeismogramDisplay parent){ this.name = name; this.parent = parent; plotPainter = new PlotPainter(); add(plotPainter); ampRegistrar.visibleAmpCalc(timeRegistrar); addSeismogram(seis); setLayout(new OverlayLayout(this)); addComponentListener(n...
1,118,397
public Object clone() { BwAuthUserPrefs aup = new BwAuthUserPrefs(); aup.setId(getId()); // Don't clone the authuser - sets up a loop aup.setAutoAddCategories(getAutoAddCategories()); TreeSet nts = new TreeSet(); Set ts = getPreferredCategories(); if (ts != null) { Iterator it = ts.iterator(...
public Object clone() { BwAuthUserPrefs aup = new BwAuthUserPrefs(); aup.setId(getId()); // Don't clone the authuser - sets up a loop aup.setAutoAddCategories(getAutoAddCategories()); TreeSet nts = new TreeSet(); Set ts = getPreferredCategories(); if (ts != null) { Iterator it = ts.iterator(...
1,118,398
public int sort(DataSetSeismogram seismo, String name){ int i = 0; while(i < seismos.size() && seismo.isFurtherThan((DataSetSeismogram)seismos.get(i))){ i++; } seismos.add(i, seismo); return i; }
public int sort(DataSetSeismogram seismo, String name){ int i = 0; while(i < seismos.size() && seismo.isFurtherThan((DataSetSeismogram)seismos.get(names.get(i)))){ i++; } seismos.add(i, seismo); return i; }
1,118,399
public int sort(DataSetSeismogram seismo, String name){ int i = 0; while(i < seismos.size() && seismo.isFurtherThan((DataSetSeismogram)seismos.get(i))){ i++; } seismos.add(i, seismo); return i; }
public int sort(DataSetSeismogram seismo, String name){ int i = 0; while(i < seismos.size() && seismo.isFurtherThan((DataSetSeismogram)seismos.get(i))){ i++; } seismos.put(name, seismo); names.add(i, seismo); return i; }
1,118,400
public void draw(UnitRangeImpl r, Graphics2D g2d){ double numDivisions = (r.max_value - r.min_value)/divSize; double pixelsPerLabelTick = getLimitingSize()/numDivisions; double pixelsPerMinorTick = pixelsPerLabelTick/ticksPerDiv; int numLabelTicks = (int)Math.ceil(num...
public void draw(UnitRangeImpl r, Graphics2D g2d){ double numDivisions = (r.max_value - r.min_value)/divSize; double pixelsPerLabelTick = getLimitingSize()/numDivisions; double pixelsPerMinorTick = pixelsPerLabelTick/ticksPerDiv; int numLabelTicks = (int)Math.ceil(num...
1,118,401
private void label(String label, float[] nextLabelPoint, Graphics2D g2d) { Rectangle2D bounds = g2d.getFontMetrics().getStringBounds(label, g2d); float x, y; if(direction == VERTICAL){ y = nextLabelPoint[1] + (float)(bounds.getHeight()/(double)4); i...
private void label(String label, float[] nextLabelPoint, Graphics2D g2d, double trans) { Rectangle2D bounds = g2d.getFontMetrics().getStringBounds(label, g2d); float x, y; if(direction == VERTICAL){ y = nextLabelPoint[1] + (float)(bounds.getHeight()/(double)4); ...
1,118,402
private void label(String label, float[] nextLabelPoint, Graphics2D g2d) { Rectangle2D bounds = g2d.getFontMetrics().getStringBounds(label, g2d); float x, y; if(direction == VERTICAL){ y = nextLabelPoint[1] + (float)(bounds.getHeight()/(double)4); i...
private void label(String label, float[] nextLabelPoint, Graphics2D g2d) { Rectangle2D bounds = g2d.getFontMetrics().getStringBounds(label, g2d); float x, y; if(direction == VERTICAL){ y = nextLabelPoint[1] + (float)(bounds.getHeight()/(double)4); i...
1,118,403
public int currentSegment(float[] coordinates){ int i = 0; if(min){ i = 1; currentIndex--; } min = !min; coordinates[0] = currentIndex; coordinates[1] = points[i][currentIndex]; if(coordinates[0] % 100 == 0){ logger.debug("x: " + coor...
public int currentSegment(float[] coordinates){ int i = 0; if(min){ i = 1; currentIndex--; } min = !min; coordinates[0] = currentIndex; coordinates[1] = points[i][currentIndex]; if(coordinates[0] % 100 == 0){ logger.debug("x: " + coor...
1,118,405
public int getWindingRule(){ logger.debug("calling getWindingRule"); return WIND_NON_ZERO; }
public int getWindingRule(){ return WIND_NON_ZERO; }
1,118,406
public boolean isDone(){ if(currentIndex % 200 == 0){ logger.debug("calling isDone"); } if(currentIndex == endIndex){ return true; } return false; }
public boolean isDone(){ if(currentIndex % 200 == 0){ logger.debug("calling isDone"); } if(currentIndex == endIndex){ return true; } return false; }
1,118,407
public void next(){ if(currentIndex % 200 == 0){ logger.debug("calling next()"); } currentIndex++; }
public void next(){ if(currentIndex % 200 == 0){ logger.debug("calling next()"); } currentIndex++; }
1,118,409
public void setDrawnPixels(int[] drawnPixels){ this.drawnPixels = drawnPixels; startIndex = drawnPixels[0]; endIndex = drawnPixels[1]; currentIndex = startIndex; logger.debug("Iterator drawing on " + startIndex + ", " + endIndex); }
public void setDrawnPixels(int[] drawnPixels){ this.drawnPixels = drawnPixels; startIndex = drawnPixels[0]; endIndex = drawnPixels[1]; currentIndex = startIndex; logger.debug("Iterator drawing on " + startIndex + ", " + endIndex); }
1,118,410
public EventFormatter(CalSvcI svci, EventInfo eventInfo, TimeView view, CalendarInfo calInfo, CalTimezones ctz) { this.eventInfo = eventInfo; this.calInfo = calInfo; this.ctz= ctz; this.svci = svci; }
public EventFormatter(CalSvcI svci, EventInfo eventInfo, TimeView view, CalendarInfo calInfo, CalTimezones ctz) { this.eventInfo = eventInfo; this.calInfo = calInfo; this.ctz= ctz; }
1,118,411
public DateTimeFormatter(CalendarInfo calInfo, BwDateTime date, CalTimezones ctz) throws CalFacadeException { this.calInfo = calInfo; setDate(date, ctz); }
public DateTimeFormatter(CalendarInfo calInfo, BwDateTime date, CalTimezones ctz) throws CalFacadeException { this.calInfo = calInfo; setDate(date, ctz); }
1,118,412
public DateTimeFormatter(CalendarInfo calInfo, BwDateTime date, CalTimezones ctz) throws CalFacadeException { this.calInfo = calInfo; setDate(date, ctz); }
public DateTimeFormatter(CalendarInfo calInfo, BwDateTime date, CalTimezones ctz) throws CalFacadeException { this.calInfo = calInfo; }
1,118,413
protected void decorateView(View containerView, View view, IAdaptable semanticAdapter, String semanticHint, int index, boolean persisted) { if (semanticHint == null) { semanticHint = UMLVisualIDRegistry.getType(org.eclipse.uml2.diagram.profile.edit.parts.EnumerationLiteralEditPart.VISUAL_ID); view.setType(semanti...
protected void decorateView(View containerView, View view, IAdaptable semanticAdapter, String semanticHint, int index, boolean persisted) { if (semanticHint == null) { semanticHint = UMLVisualIDRegistry.getType(EnumerationLiteralEditPart.VISUAL_ID); view.setType(semanticHint); } super.decorateView(containerView...
1,118,414
public void drawAzimuth(ParticleMotion particleMotion, Graphics2D graphics2D) { logger.debug("IN DRAW AZIMUTH"); if(!particleMotion.isHorizontalPlane()) return; Shape sector = getSectorShape(); graphics2D.setColor(Color.blue); graphics2D.fill(sector); graphics2D.draw(sector); graphics2D.setStroke(new B...
public synchronized void drawAzimuth(ParticleMotion particleMotion, Graphics2D graphics2D) { logger.debug("IN DRAW AZIMUTH"); if(!particleMotion.isHorizontalPlane()) return; Shape sector = getSectorShape(); graphics2D.setColor(Color.blue); graphics2D.fill(sector); graphics2D.draw(sector); graphics2D.se...
1,118,416
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { logger.debug("IN DRAW LABELS"); Color color = new Color(0, 0, 0, 128); graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 20; if(fontSize < 4) fontSize = 4; else if(fontSi...
public synchronized void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { logger.debug("IN DRAW LABELS"); Color color = new Color(0, 0, 0, 128); graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 20; if(fontSize < 4) fontSize = 4; e...
1,118,417
public void drawParticleMotion(ParticleMotion particleMotion, Graphics g) { if(!recalculateValues) { recalculateValues = false; System.out.println(" DRAWING THE PARTICLE MOTION WITHOUT RECALCULATING THE VALUES"); ((Graphics2D)g).draw(particleMotion.getShape()); return; } logger.debug("IN DRAW PARTIC...
public synchronized void drawParticleMotion(ParticleMotion particleMotion, Graphics g) { if(!recalculateValues) { recalculateValues = false; System.out.println(" DRAWING THE PARTICLE MOTION WITHOUT RECALCULATING THE VALUES"); ((Graphics2D)g).draw(particleMotion.getShape()); return; } logger.debug("I...
1,118,418
public boolean findPoint(int count, int newx, int newy) { boolean rtn = false; int size = displays.size(); for(int counter = 0; counter < size; counter++) { ParticleMotion particleMotion = (ParticleMotion)displays.get(counter); Shape shape = particleMotion.getShape(); //for(int i = -4;...
public synchronized boolean findPoint(int count, int newx, int newy) { boolean rtn = false; int size = displays.size(); for(int counter = 0; counter < size; counter++) { ParticleMotion particleMotion = (ParticleMotion)displays.get(counter); Shape shape = particleMotion.getShape(); //fo...
1,118,419
public Shape getParticleMotionPath(int[] x, int[] y) { int len = x.length; if(y.length < len) { len = y.length;} GeneralPath generalPath = new GeneralPath(GeneralPath.WIND_EVEN_ODD); if(len != 0) { generalPath.moveTo(x[0], y[0]); } for(int counter = 1; counter < len; counter++) { generalPath.lineTo(x[cou...
public synchronized Shape getParticleMotionPath(int[] x, int[] y) { int len = x.length; if(y.length < len) { len = y.length;} GeneralPath generalPath = new GeneralPath(GeneralPath.WIND_EVEN_ODD); if(len != 0) { generalPath.moveTo(x[0], y[0]); } for(int counter = 1; counter < len; counter++) { generalPath...
1,118,421
public Shape getSectorShape() { ParticleMotion particleMotion = (ParticleMotion)displays.get(0); AmpConfigRegistrar ampRangeConfig = particleMotion.vAmpConfigRegistrar; UnitRangeImpl unitRangeImpl = vunitRangeImpl;//ampRangeConfig.getAmpRange(particleMotion.vseis); double vmin = unitRangeImpl.getMinValue(); double ...
public synchronized Shape getSectorShape() { ParticleMotion particleMotion = (ParticleMotion)displays.get(0); AmpConfigRegistrar ampRangeConfig = particleMotion.vAmpConfigRegistrar; UnitRangeImpl unitRangeImpl = vunitRangeImpl;//ampRangeConfig.getAmpRange(particleMotion.vseis); double vmin = unitRangeImpl.getMinVal...
1,118,422
public void paintComponent(Graphics g) { // if(setSelected == 1) g.setColor(Color.red); //else if(setSelected == 2) g.setColor(getBackground()); Graphics2D graphics2D = (Graphics2D)g; logger.debug("IN PAINT COMPONENT"); if(startPoint != null && endPoint != null) { graphics2D.setColor(Color.yellow); //log...
public synchronized void paintComponent(Graphics g) { // if(setSelected == 1) g.setColor(Color.red); //else if(setSelected == 2) g.setColor(getBackground()); Graphics2D graphics2D = (Graphics2D)g; logger.debug("IN PAINT COMPONENT"); if(startPoint != null && endPoint != null) { graphics2D.setColor(Color.yello...
1,118,423
public void resize() { setSize(super.getSize()); //particleMotionDisplay.resize(); recalculateValues = true; repaint(); }
public synchronized void resize() { setSize(super.getSize()); //particleMotionDisplay.resize(); recalculateValues = true; repaint(); }
1,118,424
public void updateTimeRange() { hunitRangeImpl = new UnitRangeImpl(getMinHorizontalAmplitude(), getMaxHorizontalAmplitude(), UnitImpl.COUNT); vunitRangeImpl = new UnitRangeImpl(getMinVerticalAmplitude(), getMaxVerticalAmplitude(), UnitImpl.COUNT); particleMotionDisplay.updateHorizontalAm...
public synchronized void updateTimeRange() { hunitRangeImpl = new UnitRangeImpl(getMinHorizontalAmplitude(), getMaxHorizontalAmplitude(), UnitImpl.COUNT); vunitRangeImpl = new UnitRangeImpl(getMinVerticalAmplitude(), getMaxVerticalAmplitude(), UnitImpl.COUNT); particleMotionDisplay.updat...
1,118,425
public void zoomInParticleMotionDisplay(int clickCount, int mx, int my) { double hmin = hunitRangeImpl.getMinValue(); double hmax = hunitRangeImpl.getMaxValue(); double vmin = vunitRangeImpl.getMinValue(); double vmax = vunitRangeImpl.getMaxValue(); if(hmin > hmax) { double temp = hmax; hmax = hmin; hmin = temp;} ...
public synchronized void zoomInParticleMotionDisplay(int clickCount, int mx, int my) { double hmin = hunitRangeImpl.getMinValue(); double hmax = hunitRangeImpl.getMaxValue(); double vmin = vunitRangeImpl.getMinValue(); double vmax = vunitRangeImpl.getMaxValue(); if(hmin > hmax) { double temp = hmax; hmax = hmin; h...
1,118,426
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.fetch...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.fetch...
1,118,428
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.fetch...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.fetch...
1,118,429
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.fetch...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.fetch...
1,118,430
public void addSeismogram(DataSetSeismogram newSeismogram){ seismos.add(newSeismogram); SeismogramPlotter newPlotter; if (autoColor) { newPlotter = new SeismogramPlotter(newSeismogram, seisColors[seisCount%seisColors.length]); }else { newPlotter = new SeismogramPlotter(newSeismogram, Color.blue); } // e...
public void addSeismogram(DataSetSeismogram newSeismogram){ seismos.add(newSeismogram); SeismogramPlotter newPlotter; if (autoColor) { newPlotter = new SeismogramPlotter(newSeismogram, seisColors[seisCount%seisColors.length]); }else { newPlotter = new SeismogramPlotter(newSeismogram, Color.blue); } // e...
1,118,431
public SeismogramBackgroundLoader(SeismogramBackgroundLoaderPool pool) { this.pool = pool; Runnable r = new Runnable() { public void run() { try { runWork(); } catch (Exception e) { e.printStackTrace(); } } }; privateThread = new Thread(r); privateThread.start(); }
public SeismogramBackgroundLoader(SeismogramBackgroundLoaderPool pool) { this.pool = pool; Runnable r = new Runnable() { public void run() { try { runWork(); } catch (Exception e) { e.printStackTrace(); } } }; privateThread = new Thread(seisLoaderThreadGroup, r, "Seismogram Loader"+getThrea...
1,118,432
protected static void scaleYvalues(int[][] comp, LocalSeismogram seismogram, MicroSecondTimeRange tr, UnitRangeImpl ampRange, Dimension size) { LocalSeismogramImpl seis = (LocalSeismogramImpl)seismogram; double yMin = ampRange.getMinValue(); double yMax = ampRange.getMaxValue(); System.out.println("yM...
protected static void scaleYvalues(int[][] comp, LocalSeismogram seismogram, MicroSecondTimeRange tr, UnitRangeImpl ampRange, Dimension size) { LocalSeismogramImpl seis = (LocalSeismogramImpl)seismogram; double yMin = ampRange.getMinValue(); double yMax = ampRange.getMaxValue(); for( int i =0 ; i < c...
1,118,433
public static LocalSeismogramImpl createSpike() { return createSpike(new MicroSecondDate()); }
public static LocalSeismogramImpl createSpike() { return createSpike(ClockUtil.now()); }
1,118,434
public ATObject setValue(ATObject newValue) throws NATException { ATObject result = getValue(); frame_.meta_assignField(name_, newValue); return result; }
public ATObject setValue(ATObject newValue) throws NATException { ATObject result = getFieldValue(); frame_.meta_assignField(name_, newValue); return result; }
1,118,435
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
1,118,437
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 20; if(fontSize < 4) fontSize = 4; else ...
1,118,438
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
1,118,439
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
1,118,440
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
1,118,441
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
public void drawLabels(ParticleMotion particleMotion, Graphics2D graphics2D) { Color color = particleMotion.getColor(); if(color == null) color = COLORS[0]; graphics2D.setColor(color); java.awt.Dimension dimension = getSize(); float fontSize = dimension.width / 10; if(fontSize < 4) fontSize = 4; else ...
1,118,442
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
1,118,443
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
1,118,444
public void itemStateChanged(ItemEvent ae) { if(ae.getStateChange() == ItemEvent.SELECTED) { view.addDisplayKey(((AbstractButton)ae.getItem()).getText()); setHorizontalTitle(view.getSelectedParticleMotion()[0].hseis.getSeismogram().getName()); setVerticalTitle(view.getSelectedParticleMotion()[0].vseis.getSeis...
public void itemStateChanged(ItemEvent ae) { if(ae.getStateChange() == ItemEvent.SELECTED) { view.addDisplayKey(((AbstractButton)ae.getItem()).getText()); setHorizontalTitle(view.getSelectedParticleMotion()[0].hseis.getSeismogram().getName()); setVerticalTitle(view.getSelectedParticleMotion()[0].vseis.getSeis...
1,118,445
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (!form.getUserAuth().isSuperUser()) { return "noAccess"; // First line of defence } CalSvc...
1,118,446
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
1,118,447
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
1,118,448
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
1,118,449
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
1,118,450
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } CalSvcI svc = form.getCa...
1,118,451
public void paint(Graphics g){ if(overSizedImage == null || overSizedImage.get() == null){ logger.debug("the image is null and is being recreated"); this.createImage(); return; } long endTime = timeConfig.getTimeRange().getEndTime().getMicroSecondTime(); long beginTime = timeConfig.getTimeRange().ge...
public void paint(Graphics g){ if(overSizedImage == null || overSizedImage.get() == null){ logger.debug("the image is null and is being recreated"); this.createImage(); return; } long endTime = timeConfig.getTimeRange().getEndTime().getMicroSecondTime(); long beginTime = timeConfig.getTimeRange().ge...
1,118,452
public void paint(Graphics g){ if(overSizedImage == null || overSizedImage.get() == null){ logger.debug("the image is null and is being recreated"); this.createImage(); return; } long endTime = timeConfig.getTimeRange().getEndTime().getMicroSecondTime(); long beginTime = timeConfig.getTimeRange().ge...
public void paint(Graphics g){ if(overSizedImage == null || overSizedImage.get() == null){ logger.debug("the image is null and is being recreated"); this.createImage(); return; } long endTime = timeConfig.getTimeRange().getEndTime().getMicroSecondTime(); long beginTime = timeConfig.getTimeRange().ge...
1,118,453
public void paint(Graphics g){ if(overSizedImage == null || overSizedImage.get() == null){ logger.debug("the image is null and is being recreated"); this.createImage(); return; } long endTime = timeConfig.getTimeRange().getEndTime().getMicroSecondTime(); long beginTime = timeConfig.getTimeRange().ge...
public void paint(Graphics g){ if(overSizedImage == null || overSizedImage.get() == null){ logger.debug("the image is null and is being recreated"); this.createImage(); return; } long endTime = timeConfig.getTimeRange().getEndTime().getMicroSecondTime(); long beginTime = timeConfig.getTimeRange().ge...
1,118,454