rem stringlengths 0 477k | add stringlengths 0 313k | context stringlengths 6 599k |
|---|---|---|
final VmThread newThread = scheduler.schedule(); | VmThread newThread = scheduler.popFirstSleepingThread(); if (newThread == null) { newThread = scheduler.popFirstReadyThread(); } | final void reschedule() { // Unsafe.debug("R"); this.nextThread = null; try { // Get the current thread final VmThread current = currentThread; this.nextThread = current; // Process kernel debugger data if (Unsafe.isKdbEnabled()) { ... |
newThread.wakeUpByScheduler(); | final void reschedule() { // Unsafe.debug("R"); this.nextThread = null; try { // Get the current thread final VmThread current = currentThread; this.nextThread = current; // Process kernel debugger data if (Unsafe.isKdbEnabled()) { ... | |
final void suspend(boolean releaseSchedulerLock, ProcessorLock otherLock) { | final void suspend(boolean releaseSchedulerLock) { | final void suspend(boolean releaseSchedulerLock, ProcessorLock otherLock) { if (lockCount != 1) { Unsafe.debug("Suspend with invalid lockCount: "); Unsafe.debug(lockCount); architecture.getStackReader().debugStackTrace(); Unsafe.die("suspend"); } fina... |
enableReschedule(releaseSchedulerLock, otherLock); | enableReschedule(releaseSchedulerLock); | final void suspend(boolean releaseSchedulerLock, ProcessorLock otherLock) { if (lockCount != 1) { Unsafe.debug("Suspend with invalid lockCount: "); Unsafe.debug(lockCount); architecture.getStackReader().debugStackTrace(); Unsafe.die("suspend"); } fina... |
final void yield() { | final void yield(boolean ignorePriority) { final VmThread t = this.currentThread; t.setYieldingState(); scheduler.addToReadyQueue(t, ignorePriority, "proc.yield"); | final void yield() { threadSwitchIndicator = threadSwitchIndicator.or(Word .fromIntZeroExtend(TSI_SWITCH_NEEDED)); if (threadSwitchIndicator.NE(Word .fromIntZeroExtend(TSI_SWITCH_REQUESTED))) { Unsafe.debug("Yield with invalid tsi: " + threadSwitchIndicator); ... |
throw err; | public void dump(PrintStream stream, int indent) { StringBuffer b = new StringBuffer(); for (int i = 0; i < indent; ++i) b.append(' '); b.append('<'); b.append(getName()); // Dump attributes if there are any. if (getAttributeCount() > 0) { b.append('\n'); ... | |
public void filterRGBPixels(int x, int y, int w, int h, int[] pixels, int off, int scansize) | public void filterRGBPixels(int x, int y, int w, int h, int[] pixels, int offset, int scansize) | public void filterRGBPixels(int x, int y, int w, int h, int[] pixels, int off, int scansize) { int xp, yp, i; i = 0; for( xp = x; xp < ( x + w); xp++ ) for( yp = y; yp < (y + h); yp++ ) { pixels[i] = filterRGB( xp, yp, pixels[i] ); i++; } } |
int xp, yp, i; i = 0; for( xp = x; xp < ( x + w); xp++ ) for( yp = y; yp < (y + h); yp++ ) | for (int xp = x; xp < (x + w); xp++) for (int yp = y; yp < (y + h); yp++) | public void filterRGBPixels(int x, int y, int w, int h, int[] pixels, int off, int scansize) { int xp, yp, i; i = 0; for( xp = x; xp < ( x + w); xp++ ) for( yp = y; yp < (y + h); yp++ ) { pixels[i] = filterRGB( xp, yp, pixels[i] ); i++; } } |
pixels[i] = filterRGB( xp, yp, pixels[i] ); i++; | pixels[offset] = filterRGB(xp, yp, pixels[offset]); offset++; | public void filterRGBPixels(int x, int y, int w, int h, int[] pixels, int off, int scansize) { int xp, yp, i; i = 0; for( xp = x; xp < ( x + w); xp++ ) for( yp = y; yp < (y + h); yp++ ) { pixels[i] = filterRGB( xp, yp, pixels[i] ); i++; } } |
return super.getPreferredSize(); | Dimension pref = super.getPreferredSize(); if (getScrollableTracksViewportWidth()) pref.width = getUI().getMinimumSize(this).width; if (getScrollableTracksViewportHeight()) pref.height = getUI().getMinimumSize(this).height; return pref; | public Dimension getPreferredSize() { return super.getPreferredSize(); } |
return isValid(); | Container parent = getParent(); return parent instanceof JViewport && parent.getHeight() > getUI().getMinimumSize(this).height; | public boolean getScrollableTracksViewportHeight() { /* Container parent = getParent(); return (parent instanceof JViewport && parent.isValid());*/ return isValid(); } |
return isValid(); | Container parent = getParent(); return parent != null && parent instanceof JViewport && parent.getWidth() > getUI().getMinimumSize(this).width; | public boolean getScrollableTracksViewportWidth() { /*Container parent = getParent(); return (parent instanceof JViewport && parent.isValid());*/ return isValid(); } |
if (t == null || t == "") | if (t == null || t.equals("")) | public void setText(String t) { try { // Remove the current content. Document doc = getDocument(); doc.remove(0, doc.getLength()); if (t == null || t == "") return; // Let the EditorKit read the text into the Document. getEditorKit().read(new StringReader(t), doc... |
public AccessibleJTabbedPane(JTabbedPane c) | public AccessibleJTabbedPane() | public AccessibleJTabbedPane(JTabbedPane c) { super(c); } |
super(c); | super(); | public AccessibleJTabbedPane(JTabbedPane c) { super(c); } |
JTabbedPane.this.add(c); | public void setComponent(Component c) { this.component = c; } | |
accessibleContext = new AccessibleJTabbedPane(this); | accessibleContext = new AccessibleJTabbedPane(); | public AccessibleContext getAccessibleContext() { if (accessibleContext == null) accessibleContext = new AccessibleJTabbedPane(this); return accessibleContext; } |
repaint(); | public void insertTab(String title, Icon icon, Component component, String tip, int index) { Page p = new Page(title, icon, component, tip); tabs.insertElementAt(p, index); // Hide the component so we don't see it. Do it before we parent it // so we don't trigger a repaint. comp... | |
if (!jarfile.signaturesRead) | if (jarfile.verify && !jarfile.signaturesRead) | public Object nextElement() { ZipEntry zip = (ZipEntry) entries.nextElement(); JarEntry jar = new JarEntry(zip); Manifest manifest; try { manifest = jarfile.getManifest(); } catch (IOException ioe) { manifest = null; } if (manifest != null) { jar.attr = manifest.getAttributes(ja... |
JTextComponent c) | JTextComponent t) | public void paint(Graphics g, int p0, int p1, Shape bounds, JTextComponent c) { Rectangle r0 = null; Rectangle r1 = null; Rectangle rect = bounds.getBounds(); try { r0 = c.modelToView(p0); r1 = c.modelToView(p1); } catch (BadLocationException e) { // This should... |
Rectangle r0 = null; Rectangle r1 = null; | if (p0 == p1) return; | public void paint(Graphics g, int p0, int p1, Shape bounds, JTextComponent c) { Rectangle r0 = null; Rectangle r1 = null; Rectangle rect = bounds.getBounds(); try { r0 = c.modelToView(p0); r1 = c.modelToView(p1); } catch (BadLocationException e) { // This should... |
r0 = c.modelToView(p0); r1 = c.modelToView(p1); } catch (BadLocationException e) { return; } | public void paint(Graphics g, int p0, int p1, Shape bounds, JTextComponent c) { Rectangle r0 = null; Rectangle r1 = null; Rectangle rect = bounds.getBounds(); try { r0 = c.modelToView(p0); r1 = c.modelToView(p1); } catch (BadLocationException e) { // This should... | |
if (r0 == null || r1 == null) return; if (color == null) g.setColor(c.getSelectionColor()); else g.setColor(color); if (r0.y == r1.y) { r0.width = r1.x - r0.x; paintHighlight(g, r0); return; } r0.width = rect.x + rect.width - r0.x; paintHighlight(g, r0); r0.y += r0.height; r0.x = rect.x; r0.width = rect.width; ... | Rectangle l0 = ui.modelToView(t, p0, null); Rectangle l1 = ui.modelToView(t, p1, null); if (l0.y == l1.y) paintHighlight(g, l0.union(l1)); else { l0.width = rect.width - l0.x; paintHighlight(g, l0); int posBelow = Utilities.getPositionBelow(t, p0, l0.x); int p1RowStart = Utilities.getRowStart(t, p1); if (pos... | public void paint(Graphics g, int p0, int p1, Shape bounds, JTextComponent c) { Rectangle r0 = null; Rectangle r1 = null; Rectangle rect = bounds.getBounds(); try { r0 = c.modelToView(p0); r1 = c.modelToView(p1); } catch (BadLocationException e) { // This should... |
result[padding++] = (byte) (((bl & 0x03) << 6) | ((rounds & 0x07) << 3) | (HAVAL_VERSION & 0x07)); result[padding++] = (byte) (bl >>> 2); | int sigByte = (bl & 0x03) << 6; sigByte |= (rounds & 0x07) << 3; sigByte |= HAVAL_VERSION & 0x07; result[padding++] = (byte) sigByte; result[padding++] = (byte)(bl >>> 2); | protected byte[] padBuffer() { // pad out to 118 mod 128. other 10 bytes have special use. int n = (int) (count % BLOCK_SIZE); int padding = (n < 118) ? (118 - n) : (246 - n); byte[] result = new byte[padding + 10]; result[0] = (byte) 0x01; // save the version number (LSB 3), the number of rounds ... |
valid = Boolean.valueOf(DIGEST0.equals(Util.toString(new Haval().digest()))); | String d = Util.toString(new Haval().digest()); valid = Boolean.valueOf(DIGEST0.equals(d)); | public boolean selfTest() { if (valid == null) { valid = Boolean.valueOf(DIGEST0.equals(Util.toString(new Haval().digest()))); } return valid.booleanValue(); } |
int X0 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X1 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X2 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X3 = (in[i++]... | int X0 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X1 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X2 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X3 = (in[i++]... | protected synchronized void transform(byte[] in, int i) { int X0 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X1 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X2 = (in[i++] & 0xFF... |
int X11 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X12 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X13 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X14 = (in[... | protected synchronized void transform(byte[] in, int i) { int X0 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X1 = (in[i++] & 0xFF) | (in[i++] & 0xFF) << 8 | (in[i++] & 0xFF) << 16 | (in[i++] & 0xFF) << 24; int X2 = (in[i++] & 0xFF... | |
public MarshalledObject(Object obj) throws java.io.IOException | public MarshalledObject(Object obj) throws IOException | public MarshalledObject(Object obj) throws java.io.IOException { ByteArrayOutputStream objStream = new ByteArrayOutputStream(); RMIMarshalledObjectOutputStream stream = new RMIMarshalledObjectOutputStream(objStream); stream.writeObject(obj); stream.flush(); objBytes = objStream.toByteArray(); locBy... |
if (ctx.length < 3) | if (ctx.length < 5) | public static Class getCallingClass() { Class[] ctx = getClassContext(); if (ctx.length < 3) return null; return ctx[2]; } |
return ctx[2]; | return ctx[4]; | public static Class getCallingClass() { Class[] ctx = getClassContext(); if (ctx.length < 3) return null; return ctx[2]; } |
return new Boolean(true); | return Boolean.TRUE; | protected Object parse(String number) throws AssemblyException { if (number.equals("true")) return new Boolean(true); if (number.equals("false")) return new Boolean(false); throw new AssemblyException(new IllegalArgumentException("Element contained no valid boolean value.")); } |
return new Boolean(false); | return Boolean.FALSE; | protected Object parse(String number) throws AssemblyException { if (number.equals("true")) return new Boolean(true); if (number.equals("false")) return new Boolean(false); throw new AssemblyException(new IllegalArgumentException("Element contained no valid boolean value.")); } |
public abstract Context create_child(String parm1); | public abstract Context create_child(String child); | public abstract Context create_child(String parm1); |
public Object clone() throws CloneNotSupportedException | public Object clone() throws CloneNotSupportedException, NotImplementedException | public Object clone() throws CloneNotSupportedException { return null; // TODO } |
throws NotImplementedException | protected void insureRowContinuity() { // TODO } | |
throws NotImplementedException | protected void insureUniqueness() { // TODO } | |
throws NotImplementedException | public boolean isRowSelected(int row) { return false; // TODO } | |
throws NotImplementedException | public void resetRowSelection() { // TODO } | |
throws NotImplementedException | public void setRowMapper(RowMapper rowMapper) { // TODO } | |
throws NotImplementedException | public void setSelectionPaths(TreePath[] paths) { // TODO } | |
throws NotImplementedException | public String toString() { return null; // TODO } | |
public TreeSelectionEvent(Object source, TreePath path, boolean isNew, TreePath oldLeadSelectionPath, TreePath newLeadSelectionPath) { | public TreeSelectionEvent(Object source, TreePath[] paths, boolean[] areNew, TreePath oldLeadSelectionPath, TreePath newLeadSelectionPath) { | public TreeSelectionEvent(Object source, TreePath path, boolean isNew, TreePath oldLeadSelectionPath, TreePath newLeadSelectionPath) { super(source);//TODO this.paths = new TreePath[1]{path};//TODO this.areNew = new boolean[1]{isNew}; this.oldLeadSelectionPath = oldLeadSelectionPath; this.newLeadSel... |
this.paths = paths; this.areNew = areNew; | public TreeSelectionEvent(Object source, TreePath path, boolean isNew, TreePath oldLeadSelectionPath, TreePath newLeadSelectionPath) { super(source);//TODO this.paths = new TreePath[1]{path};//TODO this.areNew = new boolean[1]{isNew}; this.oldLeadSelectionPath = oldLeadSelectionPath; this.newLeadSel... | |
public BufferedImage filter(BufferedImage src, BufferedImage dst) | public final BufferedImage filter(BufferedImage src, BufferedImage dst) | public BufferedImage filter(BufferedImage src, BufferedImage dst) { // TODO Make sure premultiplied alpha is handled correctly. // TODO See that color conversion is handled. // TODO figure out how to use rendering hints. if (scale.length != offsets.length) throw new IllegalArgumentException(); Co... |
public Point2D getPoint2D(Point2D src, Point2D dst) { | public final Point2D getPoint2D(Point2D src, Point2D dst) { | public Point2D getPoint2D(Point2D src, Point2D dst) { if (dst == null) dst = (Point2D) src.clone(); else dst.setLocation(src); return dst; } |
private synchronized static long allocateSeqNum() | private static synchronized long allocateSeqNum() | private synchronized static long allocateSeqNum() { lastSeqNum += 1; return lastSeqNum; } |
public void setMaximumFractionDigits (int newValue) | public void setMaximumFractionDigits (int digits) | public void setMaximumFractionDigits (int newValue) { maximumFractionDigits = newValue; if (getMinimumFractionDigits () > maximumFractionDigits) setMinimumFractionDigits (maximumFractionDigits); } |
maximumFractionDigits = newValue; | maximumFractionDigits = digits; | public void setMaximumFractionDigits (int newValue) { maximumFractionDigits = newValue; if (getMinimumFractionDigits () > maximumFractionDigits) setMinimumFractionDigits (maximumFractionDigits); } |
public void setMaximumIntegerDigits (int newValue) | public void setMaximumIntegerDigits (int digits) | public void setMaximumIntegerDigits (int newValue) { maximumIntegerDigits = newValue; if (getMinimumIntegerDigits () > maximumIntegerDigits) setMinimumIntegerDigits (maximumIntegerDigits); } |
maximumIntegerDigits = newValue; | maximumIntegerDigits = digits; | public void setMaximumIntegerDigits (int newValue) { maximumIntegerDigits = newValue; if (getMinimumIntegerDigits () > maximumIntegerDigits) setMinimumIntegerDigits (maximumIntegerDigits); } |
public void setMinimumFractionDigits (int newValue) | public void setMinimumFractionDigits (int digits) | public void setMinimumFractionDigits (int newValue) { minimumFractionDigits = newValue; if (getMaximumFractionDigits () < minimumFractionDigits) setMaximumFractionDigits (minimumFractionDigits); } |
minimumFractionDigits = newValue; | minimumFractionDigits = digits; | public void setMinimumFractionDigits (int newValue) { minimumFractionDigits = newValue; if (getMaximumFractionDigits () < minimumFractionDigits) setMaximumFractionDigits (minimumFractionDigits); } |
public void setMinimumIntegerDigits (int newValue) | public void setMinimumIntegerDigits (int digits) | public void setMinimumIntegerDigits (int newValue) { minimumIntegerDigits = newValue; if (getMaximumIntegerDigits () < minimumIntegerDigits) setMaximumIntegerDigits (minimumIntegerDigits); } |
minimumIntegerDigits = newValue; | minimumIntegerDigits = digits; | public void setMinimumIntegerDigits (int newValue) { minimumIntegerDigits = newValue; if (getMaximumIntegerDigits () < minimumIntegerDigits) setMaximumIntegerDigits (minimumIntegerDigits); } |
super("An invalid Unicode code point was supplied."); | public IllegalFormatCodePointException(int c) { this.c = c; } | |
public void setSelectedColor (Color color) | public void setSelectedColor(Color color) { if (color == null) throw new Error("ColorSelectionModel cannot be set to have null color."); if (color != selectedColor) | public void setSelectedColor (Color color) { this.selectedColor = color; } |
fireStateChanged(); } | public void setSelectedColor (Color color) { this.selectedColor = color; } | |
if (possessive) break; | boolean match(CharIndexed input, REMatch mymatch) { // number of times we've matched so far int numRepeats = 0; // Possible positions for the next repeat to match at REMatch newMatch = mymatch; REMatch last = null; REMatch current; // Add the '0-repeats' index // positions.elementAt(z) == position [] in input aft... | |
((abstractDynAny) other.discriminator).listener = other; | ((AbstractAny) other.discriminator).listener = other; | public DynAny copy() { try { gnuDynUnion other = new gnuDynUnion(official_type, final_type, factory, orb); other.discriminator = discriminator.copy(); ((abstractDynAny) other.discriminator).listener = other; if (array.length == 1) { other.array = new D... |
((abstractDynAny) discriminator).listener = this; | ((AbstractAny) discriminator).listener = this; | public gnuDynUnion(TypeCode oType, TypeCode aType, gnuDynAnyFactory aFactory, ORB anOrb ) throws InconsistentTypeCode { super(oType, aType, aFactory, anOrb); try { discriminator = factory.create_dyn_any_from_type_code(final_type.discrimin... |
public InconsistentTypeCode(String why) | public InconsistentTypeCode() | public InconsistentTypeCode(String why) { super(why); } |
super(why); | public InconsistentTypeCode(String why) { super(why); } | |
public static ComponentUI createUI(final JComponent c) { | public static ComponentUI createUI(final JComponent component) { | public static ComponentUI createUI(final JComponent c) { return new BasicToggleButtonUI(); } |
final Constructor cons = cls .getConstructor(new Class[] { PluginDescriptor.class }); return (Plugin) cons.newInstance(new Object[] { this }); | if (plugin != null) { return plugin; } else { final Constructor cons = cls .getConstructor(new Class[] { PluginDescriptor.class }); return (Plugin) cons.newInstance(new Object[] { this }); } | private Plugin createPlugin() throws PluginException { if (className == null) { return new EmptyPlugin(this); } else { try { // final Class cls = // Thread.currentThread().getContextClassLoader().loadClass(className); final ClassLoader... |
} try { AccessController.doPrivileged(new PrivilegedExceptionAction() { public Object run() throws PluginException { resolve(registry); final int reqMax = requires.length; for (int i = 0; i < reqMax; i++) { final String reqId = requires[i].getPluginId(); final PluginDescriptorModel reqDescr = (PluginDescriptorModel) ... | final void startPlugin(final PluginRegistryModel registry) throws PluginException { if (started) { return; } synchronized (this) { if (started || starting) { return; } starting = true; // BootLog.info("Resolve on p... | |
AccessController.doPrivileged(new PrivilegedExceptionAction() { public Object run() throws PluginException { resolve(registry); final int reqMax = requires.length; for (int i = 0; i < reqMax; i++) { final String reqId = requires[i].getPluginId(); final PluginDescriptorModel reqDescr = (PluginDescriptorModel) registry ... | Thread.sleep(10000); } catch (InterruptedException ex1) { | final void startPlugin(final PluginRegistryModel registry) throws PluginException { if (started) { return; } synchronized (this) { if (started || starting) { return; } starting = true; // BootLog.info("Resolve on p... |
} finally { started = true; | final void startPlugin(final PluginRegistryModel registry) throws PluginException { if (started) { return; } synchronized (this) { if (started || starting) { return; } starting = true; // BootLog.info("Resolve on p... | |
resolve(registry); final int reqMax = requires.length; for (int i = 0; i < reqMax; i++) { final String reqId = requires[i].getPluginId(); final PluginDescriptorModel reqDescr = (PluginDescriptorModel) registry .getPluginDescriptor(reqId); reqDescr.startPlugin(registry); } getPlugin().start(); return null; | resolve(registry); final int reqMax = requires.length; for (int i = 0; i < reqMax; i++) { final String reqId = requires[i].getPluginId(); final PluginDescriptorModel reqDescr = (PluginDescriptorModel) registry .getPluginDescriptor(reqId); reqDescr.startPlugin(registry); | public Object run() throws PluginException { resolve(registry); final int reqMax = requires.length; for (int i = 0; i < reqMax; i++) { final String reqId = requires[i].getPluginId(); ... |
getPlugin().start(); return null; } | public Object run() throws PluginException { resolve(registry); final int reqMax = requires.length; for (int i = 0; i < reqMax; i++) { final String reqId = requires[i].getPluginId(); ... | |
throws NotImplementedException | public AccessibleJTableHeaderEntry(int c, JTableHeader p, JTable t) { throw new Error("not implemented"); } | |
throws NotImplementedException | public void addFocusListener(FocusListener l) { throw new Error("not implemented"); } | |
throws NotImplementedException | public void addPropertyChangeListener(PropertyChangeListener l) { throw new Error("not implemented"); } | |
throws NotImplementedException | public boolean contains(Point p) { throw new Error("not implemented"); } | |
throws NotImplementedException | public AccessibleAction getAccessibleAction() { throw new Error("not implemented"); } | |
throws NotImplementedException | public Accessible getAccessibleAt(Point p) { throw new Error("not implemented"); } | |
throws NotImplementedException | public Accessible getAccessibleChild(int i) { throw new Error("not implemented"); } | |
throws NotImplementedException | public int getAccessibleChildrenCount() { throw new Error("not implemented"); } | |
throws NotImplementedException | public AccessibleComponent getAccessibleComponent() { throw new Error("not implemented"); } | |
throws NotImplementedException | public AccessibleContext getAccessibleContext() { throw new Error("not implemented"); } | |
throws NotImplementedException | public String getAccessibleDescription() { throw new Error("not implemented"); } | |
throws NotImplementedException | public int getAccessibleIndexInParent() { throw new Error("not implemented"); } | |
throws NotImplementedException | public String getAccessibleName() { throw new Error("not implemented"); } | |
throws NotImplementedException | public AccessibleRole getAccessibleRole() { throw new Error("not implemented"); } | |
throws NotImplementedException | public AccessibleSelection getAccessibleSelection() { throw new Error("not implemented"); } | |
throws NotImplementedException | public AccessibleStateSet getAccessibleStateSet() { throw new Error("not implemented"); } | |
throws NotImplementedException | public AccessibleText getAccessibleText() { throw new Error("not implemented"); } | |
throws NotImplementedException | public AccessibleValue getAccessibleValue() { throw new Error("not implemented"); } | |
throws NotImplementedException | public Color getBackground() { throw new Error("not implemented"); } | |
throws NotImplementedException | public Rectangle getBounds() { throw new Error("not implemented"); } | |
throws NotImplementedException | public Cursor getCursor() { throw new Error("not implemented"); } | |
throws NotImplementedException | public Font getFont() { throw new Error("not implemented"); } | |
throws NotImplementedException | public FontMetrics getFontMetrics(Font f) { throw new Error("not implemented"); } | |
throws NotImplementedException | public Color getForeground() { throw new Error("not implemented"); } | |
throws NotImplementedException | public Locale getLocale() { throw new Error("not implemented"); } | |
throws NotImplementedException | public Point getLocation() { throw new Error("not implemented"); } | |
throws NotImplementedException | public Point getLocationOnScreen() { throw new Error("not implemented"); } | |
throws NotImplementedException | public Dimension getSize() { throw new Error("not implemented"); } | |
throws NotImplementedException | public boolean isEnabled() { throw new Error("not implemented"); } | |
throws NotImplementedException | public boolean isFocusTraversable() { throw new Error("not implemented"); } | |
throws NotImplementedException | public boolean isShowing() { throw new Error("not implemented"); } |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.