bugged
stringlengths
6
599k
fixed
stringlengths
6
40.8M
__index_level_0__
int64
0
3.24M
JRootPane getRootPane() { if (rootPane == null) setRootPane(createRootPane()); return rootPane; }
public JRootPane getRootPane() { if (rootPane == null) setRootPane(createRootPane()); return rootPane; }
19,581
protected void processWindowEvent(WindowEvent e) { super.processWindowEvent(e); switch (e.getID()) { case WindowEvent.WINDOW_CLOSING: { switch(close_action) { case EXIT_ON_CLOSE: { System.exit(1); break; } case DISPOSE_ON_CLOSE: { dispose(); break; } ca...
protected void processWindowEvent(WindowEvent e) { super.processWindowEvent(e); switch (e.getID()) { case WindowEvent.WINDOW_CLOSING: { switch(close_action) { case EXIT_ON_CLOSE: { System.exit(1); break; } case DISPOSE_ON_CLOSE: { dispose(); break; } ca...
19,582
public void setDefaultCloseOperation(int operation) { close_action = operation; }
public void setDefaultCloseOperation(int operation) { close_action = operation; }
19,583
void setGlassPane(Component glassPane) { getRootPane().setGlassPane(glassPane); }
public void setGlassPane(Component glassPane) { getRootPane().setGlassPane(glassPane); }
19,584
void setLayeredPane(JLayeredPane layeredPane) { getRootPane().setLayeredPane(layeredPane); }
public void setLayeredPane(JLayeredPane layeredPane) { getRootPane().setLayeredPane(layeredPane); }
19,585
void setRootPane(JRootPane root) { if (rootPane != null) remove(rootPane); rootPane = root; add(rootPane, BorderLayout.CENTER); }
public void setRootPane(JRootPane root) { if (rootPane != null) remove(rootPane); rootPane = root; add(rootPane, BorderLayout.CENTER); }
19,586
protected void addImpl(Component comp, Object constraints, int index) { super.addImpl(comp, constraints, index); }
protected void addImpl(Component comp, Object constraints, int index) { super.addImpl(comp, constraints, index); }
19,587
JRootPane createRootPane() { return new JRootPane(); }
JRootPane createRootPane() { return new JRootPane(); }
19,588
protected void frameInit() { super.setLayout(new BorderLayout(1, 1)); getRootPane(); // will do set/create }
protected void frameInit() { super.setLayout(new BorderLayout(1, 1)); getRootPane(); // will do set/create }
19,589
public AccessibleContext getAccessibleContext() { return null; }
public AccessibleContext getAccessibleContext() { return null; }
19,590
Component getGlassPane() { return getRootPane().getGlassPane(); }
Component getGlassPane() { return getRootPane().getGlassPane(); }
19,591
JMenuBar getJMenuBar() { return getRootPane().getJMenuBar(); }
JMenuBar getJMenuBar() { return getRootPane().getJMenuBar(); }
19,592
JLayeredPane getLayeredPane() { return getRootPane().getLayeredPane(); }
JLayeredPane getLayeredPane() { return getRootPane().getLayeredPane(); }
19,593
public Dimension getPreferredSize() { Dimension d = super.getPreferredSize(); return d; }
public Dimension getPreferredSize() { Dimension d = super.getPreferredSize(); return d; }
19,594
JRootPane getRootPane() { if (rootPane == null) setRootPane(createRootPane()); return rootPane; }
JRootPane getRootPane() { if (rootPane == null) setRootPane(createRootPane()); return rootPane; }
19,595
protected boolean isRootPaneCheckingEnabled() { return checking; }
protected boolean isRootPaneCheckingEnabled() { return checking; }
19,596
protected String paramString() { return "JDialog"; }
protected String paramString() { return "JDialog"; }
19,597
protected void processKeyEvent(KeyEvent e) { super.processKeyEvent(e); }
protected void processKeyEvent(KeyEvent e) { super.processKeyEvent(e); }
19,598
protected void processWindowEvent(WindowEvent e) { // System.out.println("PROCESS_WIN_EV-1: " + e); super.processWindowEvent(e); // System.out.println("PROCESS_WIN_EV-2: " + e); switch (e.getID()) { case WindowEvent.WINDOW_CLOSING : { switch (close_action) { case DISPOSE_ON_CLOSE : { Sys...
protected void processWindowEvent(WindowEvent e) { // System.out.println("PROCESS_WIN_EV-1: " + e); super.processWindowEvent(e); // System.out.println("PROCESS_WIN_EV-2: " + e); switch (e.getID()) { case WindowEvent.WINDOW_CLOSING : { switch (close_action) { case DISPOSE_ON_CLOSE : { Sys...
19,599
protected void processWindowEvent(WindowEvent e) { // System.out.println("PROCESS_WIN_EV-1: " + e); super.processWindowEvent(e); // System.out.println("PROCESS_WIN_EV-2: " + e); switch (e.getID()) { case WindowEvent.WINDOW_CLOSING : { switch (close_action) { case DISPOSE_ON_CLOSE : { Sys...
protected void processWindowEvent(WindowEvent e) { // System.out.println("PROCESS_WIN_EV-1: " + e); super.processWindowEvent(e); // System.out.println("PROCESS_WIN_EV-2: " + e); switch (e.getID()) { case WindowEvent.WINDOW_CLOSING : { switch (close_action) { case DISPOSE_ON_CLOSE : { Sys...
19,600
public void remove(Component comp) { getContentPane().remove(comp); }
public void remove(Component comp) { getContentPane().remove(comp); }
19,601
void setContentPane(Container contentPane) { getRootPane().setContentPane(contentPane); }
void setContentPane(Container contentPane) { getRootPane().setContentPane(contentPane); }
19,602
void setDefaultCloseOperation(int operation) { close_action = operation; }
void setDefaultCloseOperation(int operation) { close_action = operation; }
19,603
void setGlassPane(Component glassPane) { getRootPane().setGlassPane(glassPane); }
void setGlassPane(Component glassPane) { getRootPane().setGlassPane(glassPane); }
19,604
void setJMenuBar(JMenuBar menubar) { getRootPane().setJMenuBar(menubar); }
void setJMenuBar(JMenuBar menubar) { getRootPane().setJMenuBar(menubar); }
19,605
void setLayeredPane(JLayeredPane layeredPane) { getRootPane().setLayeredPane(layeredPane); }
void setLayeredPane(JLayeredPane layeredPane) { getRootPane().setLayeredPane(layeredPane); }
19,606
public void setLayout(LayoutManager manager) { super.setLayout(manager); }
public void setLayout(LayoutManager manager) { super.setLayout(manager); }
19,607
void setLocationRelativeTo(Component c) { }
void setLocationRelativeTo(Component c) { }
19,608
void setRootPane(JRootPane root) { if (rootPane != null) remove(rootPane); rootPane = root; add(rootPane, BorderLayout.CENTER); }
void setRootPane(JRootPane root) { if (rootPane != null) remove(rootPane); rootPane = root; add(rootPane, BorderLayout.CENTER); }
19,609
protected void setRootPaneCheckingEnabled(boolean enabled) { checking = enabled; }
protected void setRootPaneCheckingEnabled(boolean enabled) { checking = enabled; }
19,610
public void update(Graphics g) { paint(g); }
public void update(Graphics g) { paint(g); }
19,611
public abstract BufferedImage createCompatibleImage(int w, int h, int transparency);
public abstract BufferedImage createCompatibleImage(int w, int h, int transparency);
19,612
protected FileLock (FileChannel channel, long position, long size, boolean shared) { if (position < 0 || size < 0) throw new IllegalArgumentException (); this.channel = channel; this.position = position; this.size = size; this.shared = shared; }
protected FileLock(FileChannel channel, long position, long size, boolean shared) { if (position < 0 || size < 0) throw new IllegalArgumentException (); this.channel = channel; this.position = position; this.size = size; this.shared = shared; }
19,613
protected FileLock (FileChannel channel, long position, long size, boolean shared) { if (position < 0 || size < 0) throw new IllegalArgumentException (); this.channel = channel; this.position = position; this.size = size; this.shared = shared; }
protected FileLock (FileChannel channel, long position, long size, boolean shared) { if (position < 0 || size < 0) throw new IllegalArgumentException (); this.channel = channel; this.position = position; this.size = size; this.shared = shared; }
19,614
public final FileChannel channel () { return channel; }
public final FileChannel channel() { return channel; }
19,615
public final boolean isShared () { return shared; }
public final boolean isShared() { return shared; }
19,616
public final boolean overlaps (long position, long size) { if (position > this.position +this.size) return false; if (position + size < this.position) return false; return true; }
public final boolean overlaps(long position, long size) { if (position > this.position +this.size) return false; if (position + size < this.position) return false; return true; }
19,617
public final boolean overlaps (long position, long size) { if (position > this.position +this.size) return false; if (position + size < this.position) return false; return true; }
public final boolean overlaps (long position, long size) { if (position > this.position + this.size) return false; if (position + size < this.position) return false; return true; }
19,618
public final long position () { return position; }
public final long position() { return position; }
19,619
public abstract void release () throws IOException;
public abstract void release () throws IOException;
19,620
public final long size () { return size; }
public final long size() { return size; }
19,621
public final String toString () { return "file-lock:pos=" + position + "size=" + size; }
public final String toString() { return "file-lock:pos=" + position + "size=" + size; }
19,622
public JRadioButton(String text) { this(text, null); }
public JRadioButton(String text) { this(text, null); }
19,623
public AccessibleContext getAccessibleContext() { //Gets the AccessibleContext associated with this JRadioButton. return null; }
public AccessibleContext getAccessibleContext() { //Gets the AccessibleContext associated with this JRadioButton. return null; }
19,624
public String getUIClassID() { //Returns a string that specifies the name of the L&F class that renders this component. return "JRadioButton"; }
public String getUIClassID() { //Returns a string that specifies the name of the L&F class that renders this component. return "JRadioButton"; }
19,625
protected String paramString() { return "JRadioButton"; }
protected String paramString() { return "JRadioButton"; }
19,626
protected PortableRemoteObject() throws RemoteException { if(delegate != null) exportObject((Remote)this); }
protected PortableRemoteObject() throws RemoteException { if(delegate != null) exportObject((Remote)this); }
19,627
public static void connect(Remote target, Remote source) throws RemoteException { if(delegate != null) delegate.connect(target, source); }
public static void connect(Remote target, Remote source) throws RemoteException { if(delegate != null) delegate.connect(target, source); }
19,628
public static void exportObject(Remote obj) throws RemoteException { if(delegate != null) delegate.exportObject(obj); }
public static void exportObject(Remote object) throws RemoteException { if(delegate != null) delegate.exportObject(obj); }
19,629
public static void exportObject(Remote obj) throws RemoteException { if(delegate != null) delegate.exportObject(obj); }
public static void exportObject(Remote obj) throws RemoteException { if(delegate != null) delegate.exportObject(obj); }
19,630
public static Object narrow(Object narrowFrom, Class narrowTo) throws ClassCastException { if(delegate != null) return delegate.narrow(narrowFrom, narrowTo); else return null; }
public static Object narrow(Object object, Class narrowToInstaceOf) throws ClassCastException { if(delegate != null) return delegate.narrow(narrowFrom, narrowTo); else return null; }
19,631
public static Object narrow(Object narrowFrom, Class narrowTo) throws ClassCastException { if(delegate != null) return delegate.narrow(narrowFrom, narrowTo); else return null; }
public static Object narrow(Object narrowFrom, Class narrowTo) throws ClassCastException { if(delegate != null) return delegate.narrow(narrowFrom, narrowTo); else return null; }
19,632
public static Remote toStub(Remote obj) throws NoSuchObjectException { if(delegate != null) return delegate.toStub(obj); else return null; }
public static Remote toStub(Remote targetImpl) throws NoSuchObjectException { if(delegate != null) return delegate.toStub(obj); else return null; }
19,633
public static Remote toStub(Remote obj) throws NoSuchObjectException { if(delegate != null) return delegate.toStub(obj); else return null; }
public static Remote toStub(Remote obj) throws NoSuchObjectException { if(delegate != null) return delegate.toStub(obj); else return null; }
19,634
public static void unexportObject(Remote obj) throws NoSuchObjectException { if(delegate != null) delegate.unexportObject(obj); }
public static void unexportObject(Remote object) throws NoSuchObjectException { if(delegate != null) delegate.unexportObject(obj); }
19,635
public static void unexportObject(Remote obj) throws NoSuchObjectException { if(delegate != null) delegate.unexportObject(obj); }
public static void unexportObject(Remote obj) throws NoSuchObjectException { if(delegate != null) delegate.unexportObject(obj); }
19,636
public CharsetDecoder newDecoder () { return new UTF_16Decoder (this, UTF_16Decoder.UNKNOWN_ENDIAN); }
public CharsetDecoder newDecoder () { return new UTF_16Decoder (this, UTF_16Decoder.MAYBE_LITTLE_ENDIAN); }
19,637
protected void installDefaults() { /* most of it copied from BasicLabelUI, I don't know what keys are available, so someone may want to update this. Hence: TODO */ UIDefaults defaults = UIManager.getLookAndFeelDefaults(); /* spinner.setForeground(defaults.getColor("Spinner.foreground")); spin...
protected void installDefaults() { /* most of it copied from BasicLabelUI, I don't know what keys are available, so someone may want to update this. Hence: TODO */ UIDefaults defaults = UIManager.getLookAndFeelDefaults(); /* spinner.setForeground(defaults.getColor("Spinner.foreground")); spin...
19,638
ElementNode(TemplateNode name, TemplateNode namespace, String uas, Node source) { this.name = name; this.namespace = namespace; this.uas = uas; this.source = source; NamedNodeMap attrs = source.getAttributes(); Node attr = attrs.getNamedItemNS(Stylesheet.XSL_NS, ...
ElementNode(TemplateNode name, TemplateNode namespace, String uas, Node source) this.name = name; this.namespace = namespace; this.uas = uas; this.source = source; NamedNodeMap attrs = source.getAttributes(); Node attr = attrs.getNamedItemNS(Stylesheet.XSL_NS, ...
19,639
ElementNode(TemplateNode name, TemplateNode namespace, String uas, Node source) { this.name = name; this.namespace = namespace; this.uas = uas; this.source = source; NamedNodeMap attrs = source.getAttributes(); Node attr = attrs.getNamedItemNS(Stylesheet.XSL_NS, ...
ElementNode(TemplateNode name, TemplateNode namespace, String uas, Node source) { this.name = name; this.namespace = namespace; this.uas = uas; this.source = source; NamedNodeMap attrs = source.getAttributes(); Node attr = attrs.getNamedItemNS(Stylesheet.XSL_NS, ...
19,640
ElementNode(TemplateNode name, TemplateNode namespace, String uas, Node source) { this.name = name; this.namespace = namespace; this.uas = uas; this.source = source; NamedNodeMap attrs = source.getAttributes(); Node attr = attrs.getNamedItemNS(Stylesheet.XSL_NS, ...
ElementNode(TemplateNode name, TemplateNode namespace, String uas, Node source) this.name = name; this.namespace = namespace; this.uas = uas; this.source = source; NamedNodeMap attrs = source.getAttributes(); Node attr = attrs.getNamedItemNS(Stylesheet.XSL_NS, ...
19,641
ElementNode(TemplateNode name, TemplateNode namespace, String uas, Node source) { this.name = name; this.namespace = namespace; this.uas = uas; this.source = source; NamedNodeMap attrs = source.getAttributes(); Node attr = attrs.getNamedItemNS(Stylesheet.XSL_NS, ...
ElementNode(TemplateNode name, TemplateNode namespace, String uas, Node source) { this.name = name; this.namespace = namespace; this.uas = uas; this.source = source; NamedNodeMap attrs = source.getAttributes(); Node attr = attrs.getNamedItemNS(Stylesheet.XSL_NS, ...
19,642
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException { for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) { AttributeSet ...
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) AttributeSet as =...
19,643
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException { for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) { AttributeSet ...
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException { for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) { AttributeSet ...
19,644
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException { for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) { AttributeSet ...
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) AttributeSet as =...
19,645
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException { for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) { AttributeSet ...
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException { for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) { AttributeSet ...
19,646
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException { for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) { AttributeSet ...
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) AttributeSet as =...
19,647
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException { for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) { AttributeSet ...
void addAttributeSet(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling, String attributeSet) throws TransformerException { for (Iterator i = stylesheet.attributeSets.iterator(); i.hasNext(); ) { AttributeSet ...
19,648
TemplateNode clone(Stylesheet stylesheet) { TemplateNode ret = new ElementNode(name.clone(stylesheet), (namespace == null) ? null : namespace.clone(stylesheet), uas, source); if (children != null) { ret.children = childre...
TemplateNode clone(Stylesheet stylesheet) TemplateNode ret = new ElementNode(name.clone(stylesheet), (namespace == null) ? null : namespace.clone(stylesheet), uas, source); if (children != null) ret.children = children.cl...
19,649
TemplateNode clone(Stylesheet stylesheet) { TemplateNode ret = new ElementNode(name.clone(stylesheet), (namespace == null) ? null : namespace.clone(stylesheet), uas, source); if (children != null) { ret.children = childre...
TemplateNode clone(Stylesheet stylesheet) { TemplateNode ret = new ElementNode(name.clone(stylesheet), (namespace == null) ? null : namespace.clone(stylesheet), uas, source); if (children != null) { ret.children = childre...
19,650
TemplateNode clone(Stylesheet stylesheet) { TemplateNode ret = new ElementNode(name.clone(stylesheet), (namespace == null) ? null : namespace.clone(stylesheet), uas, source); if (children != null) { ret.children = childre...
TemplateNode clone(Stylesheet stylesheet) TemplateNode ret = new ElementNode(name.clone(stylesheet), (namespace == null) ? null : namespace.clone(stylesheet), uas, source); if (children != null) ret.children = children.cl...
19,651
TemplateNode clone(Stylesheet stylesheet) { TemplateNode ret = new ElementNode(name.clone(stylesheet), (namespace == null) ? null : namespace.clone(stylesheet), uas, source); if (children != null) { ret.children = childre...
TemplateNode clone(Stylesheet stylesheet) { TemplateNode ret = new ElementNode(name.clone(stylesheet), (namespace == null) ? null : namespace.clone(stylesheet), uas, source); if (children != null) { ret.children = childre...
19,652
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the name ...
19,653
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,654
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the name ...
19,655
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,656
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the name ...
19,657
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,658
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the name ...
19,659
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,660
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the name ...
19,661
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,662
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,663
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,664
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the name ...
19,665
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,666
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the name ...
19,667
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,668
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the name ...
19,669
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,670
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the name ...
19,671
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,672
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the name ...
19,673
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
void doApply(Stylesheet stylesheet, QName mode, Node context, int pos, int len, Node parent, Node nextSibling) throws TransformerException { Document doc = (parent instanceof Document) ? (Document) parent : parent.getOwnerDocument(); // Create a document fragment to hold the nam...
19,674
public boolean references(QName var) { if (name != null && name.references(var)) { return true; } if (namespace != null && namespace.references(var)) { return true; } return super.references(var); }
public boolean references(QName var) if (name != null && name.references(var)) return true; } if (namespace != null && namespace.references(var)) return true; } return super.references(var); }
19,675
public boolean references(QName var) { if (name != null && name.references(var)) { return true; } if (namespace != null && namespace.references(var)) { return true; } return super.references(var); }
public boolean references(QName var) { if (name != null && name.references(var)) { return true; if (namespace != null && namespace.references(var)) { return true; return super.references(var); }
19,676
public boolean references(QName var) { if (name != null && name.references(var)) { return true; } if (namespace != null && namespace.references(var)) { return true; } return super.references(var); }
public boolean references(QName var) if (name != null && name.references(var)) return true; } if (namespace != null && namespace.references(var)) return true; } return super.references(var); }
19,677
public boolean references(QName var) { if (name != null && name.references(var)) { return true; } if (namespace != null && namespace.references(var)) { return true; } return super.references(var); }
public boolean references(QName var) { if (name != null && name.references(var)) { return true; if (namespace != null && namespace.references(var)) { return true; return super.references(var); }
19,678
public String toString() { StringBuffer buf = new StringBuffer(getClass().getName()); buf.append('['); buf.append("name="); buf.append(name); if (uas != null) { buf.append(",uas="); buf.append(uas); } buf.append(']'); return buf.toString(); }
public String toString() { StringBuffer buf = new StringBuffer("element"); buf.append('['); buf.append("name="); buf.append(name); if (uas != null) { buf.append(",uas="); buf.append(uas); } buf.append(']'); return buf.toString(); }
19,679
public boolean add(Object o) { if (o == null) throw new NullPointerException("reason is null"); return add((JobStateReason) o); }
public boolean add(Object o) { if (o == null) throw new NullPointerException("reason is null"); return super.add((JobStateReason) o); }
19,681