bugged
stringlengths
6
599k
fixed
stringlengths
10
599k
__index_level_0__
int64
0
1.13M
private void createContents() { org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel stereotypeFigure_StereotypeLabel0 = new org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel(); stereotypeFigure_StereotypeLabel0.setText("\u00ABstereotype\u00BB"); org.eclipse.gmf.internal.codegen.draw2d.GridLayoutData constrain...
private void createContents() { org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel stereotypeFigure_StereotypeLabel0 = new org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel(); stereotypeFigure_StereotypeLabel0.setText("\u00ABstereotype\u00BB"); org.eclipse.gmf.internal.codegen.draw2d.GridLayoutData constrain...
1,119,723
private void createContents() { org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel stereotypeFigure_StereotypeLabel0 = new org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel(); stereotypeFigure_StereotypeLabel0.setText("\u00ABstereotype\u00BB"); org.eclipse.gmf.internal.codegen.draw2d.GridLayoutData constrain...
private void createContents() { org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel stereotypeFigure_StereotypeLabel0 = new org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel(); stereotypeFigure_StereotypeLabel0.setText("\u00ABstereotype\u00BB"); org.eclipse.gmf.internal.codegen.draw2d.GridLayoutData constrain...
1,119,724
public org.eclipse.draw2d.RectangleFigure getFigureStereotypeFigure_AttributesCompartment() { return fStereotypeFigure_AttributesCompartment; }
public RectangleFigure getFigureStereotypeFigure_AttributesCompartment() { return fStereotypeFigure_AttributesCompartment; }
1,119,725
public org.eclipse.draw2d.RectangleFigure getFigureStereotypeFigure_ConstraintsCompartment() { return fStereotypeFigure_ConstraintsCompartment; }
public RectangleFigure getFigureStereotypeFigure_ConstraintsCompartment() { return fStereotypeFigure_ConstraintsCompartment; }
1,119,726
public org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel getFigureStereotypeFigure_NameLabel() { return fStereotypeFigure_NameLabel; }
public WrapLabel getFigureStereotypeFigure_NameLabel() { return fStereotypeFigure_NameLabel; }
1,119,727
public org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel getFigureStereotypeFigure_StereotypeLabel() { return fStereotypeFigure_StereotypeLabel; }
public WrapLabel getFigureStereotypeFigure_StereotypeLabel() { return fStereotypeFigure_StereotypeLabel; }
1,119,728
private void setFigureStereotypeFigure_AttributesCompartment(org.eclipse.draw2d.RectangleFigure fig) { fStereotypeFigure_AttributesCompartment = fig; }
private void setFigureStereotypeFigure_AttributesCompartment(RectangleFigure fig) { fStereotypeFigure_AttributesCompartment = fig; }
1,119,729
private void setFigureStereotypeFigure_ConstraintsCompartment(org.eclipse.draw2d.RectangleFigure fig) { fStereotypeFigure_ConstraintsCompartment = fig; }
private void setFigureStereotypeFigure_ConstraintsCompartment(RectangleFigure fig) { fStereotypeFigure_ConstraintsCompartment = fig; }
1,119,730
private void setFigureStereotypeFigure_NameLabel(org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel fig) { fStereotypeFigure_NameLabel = fig; }
private void setFigureStereotypeFigure_NameLabel(WrapLabel fig) { fStereotypeFigure_NameLabel = fig; }
1,119,731
private void setFigureStereotypeFigure_StereotypeLabel(org.eclipse.gmf.runtime.draw2d.ui.figures.WrapLabel fig) { fStereotypeFigure_StereotypeLabel = fig; }
private void setFigureStereotypeFigure_StereotypeLabel(WrapLabel fig) { fStereotypeFigure_StereotypeLabel = fig; }
1,119,732
public void testGetUserAttributesMap() { Map awp9Key = new HashMap(); awp9Key.put("uid", "awp9"); assertEquals(this.backingMap.get("awp9"), this.testInstance.getUserAttributes(awp9Key)); Map unknownUserKey = new HashMap(); unknownUserKey.put("uid", "unknownUser"); ...
public void testGetUserAttributesMap() { Map awp9Key = new HashMap(); awp9Key.put("username", "awp9"); assertEquals(this.backingMap.get("awp9"), this.testInstance.getUserAttributes(awp9Key)); Map unknownUserKey = new HashMap(); unknownUserKey.put("uid", "unknownUser"); ...
1,119,733
private static JTextArea makeTextArea(Controller c, String source, GridBagLayout gbl, GridBagConstraints con, int rows, int cols) { JTextArea txt = new JTextArea(); txt.setForeground(null); txt.setBackground(new Color(55, 55, 55)); txt.setCaretColor(Color.WHITE); txt.se...
private static JTextArea makeTextArea(Controller c, String source, GridBagLayout gbl, GridBagConstraints con, int rows, int cols) { JTextArea txt = new JTextArea(); txt.setForeground(Color.WHITE); txt.setBackground(new Color(55, 55, 55)); txt.setCaretColor(Color.WHITE); ...
1,119,734
public static final float[] convolve(float[] fdata, float[] gdata) { Cmplx[] fTrans = fft(fdata); Cmplx[] gTrans = fft(gdata); for (int i=0; i<fdata.length; i++) { fTrans[i] = Cmplx.mul(fTrans[i], gTrans[i]); } // end of for (int i=0; i<gdata.length; i++) return fftInverse(fTrans, fdata.length...
public static final float[] convolve(float[] fdata, float[] gdata) { Cmplx[] fTrans = fft(fdata); Cmplx[] gTrans = fft(gdata); for (int i=0; i<fdata.length; i++) { fTrans[i] = Cmplx.mul(fTrans[i], gTrans[i]); } // end of for (int i=0; i<gdata.length; i++) return fftInverse(fTrans, fdata.length...
1,119,735
public static final float[] correlate(float[] fdata, float[] gdata) { Cmplx[] fTrans = fft(fdata); Cmplx[] gTrans = fft(gdata); for (int i=0; i<fdata.length; i++) { fTrans[i] = Cmplx.mul(fTrans[i], gTrans[i].conjg()); } // end of for (int i=0; i<gdata.length; i++) return fftInverse(fTrans, fdata....
public static final float[] correlate(float[] fdata, float[] gdata) { Cmplx[] fTrans = fft(fdata); Cmplx[] gTrans = fft(gdata); for (int i=0; i<fdata.length; i++) { fTrans[i] = Cmplx.mul(fTrans[i], gTrans[i].conjg()); } // end of for (int i=0; i<gdata.length; i++) return fftInverse(fTrans, fdata....
1,119,736
protected boolean checkSvci(HttpServletRequest request, BwActionFormBase form, BwSession sess, int access, String user, boolean publicAdmin, boo...
protected boolean checkSvci(HttpServletRequest request, BwActionFormBase form, BwSession sess, int access, String user, boolean publicAdmin, boo...
1,119,737
protected boolean checkSvci(HttpServletRequest request, BwActionFormBase form, BwSession sess, int access, String user, boolean publicAdmin, boo...
protected boolean checkSvci(HttpServletRequest request, BwActionFormBase form, BwSession sess, int access, String user, boolean publicAdmin, boo...
1,119,738
public IdeaView(Idea anIdea) { System.out.println("creating view for "+anIdea); this.idea = anIdea; this.setLength(15 * anIdea.getText().length()); int subNum = anIdea.getSubIdeas().size(); int i = 0; for (Idea subIdea: anIdea.getSubIdeas()) { IdeaView subView = ...
public IdeaView(Idea anIdea) { this.idea = anIdea; this.setLength(15 * anIdea.getText().length()); int subNum = anIdea.getSubIdeas().size(); int i = 0; for (Idea subIdea: anIdea.getSubIdeas()) { IdeaView subView = new IdeaView(subIdea); subView.setAng...
1,119,739
public boolean handlesProtocol(String protocol) { if (protocol == null) { return false; } for (int i = 0; i < protocols.length; i++) { if (protocol.equalsIgnoreCase(protocols[i])) { return true; } } return false; }
public boolean handlesProtocol(String protocol) { if (protocol == null || protocols == null) { return false; } for (int i = 0; i < protocols.length; i++) { if (protocol.equalsIgnoreCase(protocols[i])) { return true; } } return false; }
1,119,740
public static JavaMethod[] getAllMethods(Class fromClass, boolean isStatic) { // assemble a set of all unique selectors of all (non-)static methods of the class HashSet uniqueNames = new HashSet(); Method[] methods = fromClass.getMethods(); for (int i = 0; i < methods.length; i++) { Method m = methods[i]; if (...
public static JavaMethod[] getAllMethods(Class fromClass, boolean isStatic) { // assemble a set of all unique selectors of all (non-)static methods of the class HashSet uniqueNames = new HashSet(); Method[] methods = fromClass.getMethods(); for (int i = 0; i < methods.length; i++) { Method m = methods[i]; if (...
1,119,741
static Map parseAttributeToAttributeMapping(final Map mapping) { //null is assumed to be an empty map if (mapping == null) { return Collections.EMPTY_MAP; } //do a defenisve copy of the map final Map mappedAttributesBuilder = new HashMap(); f...
static Map parseAttributeToAttributeMapping(final Map mapping) { //null is assumed to be an empty map if (mapping == null) { return Collections.EMPTY_MAP; } //do a defenisve copy of the map final Map mappedAttributesBuilder = new HashMap(); for (final Iterator sou...
1,119,742
static Map parseAttributeToAttributeMapping(final Map mapping) { //null is assumed to be an empty map if (mapping == null) { return Collections.EMPTY_MAP; } //do a defenisve copy of the map final Map mappedAttributesBuilder = new HashMap(); f...
static Map parseAttributeToAttributeMapping(final Map mapping) { //null is assumed to be an empty map if (mapping == null) { return Collections.EMPTY_MAP; } //do a defenisve copy of the map final Map mappedAttributesBuilder = new HashMap(); f...
1,119,743
static Map parseAttributeToAttributeMapping(final Map mapping) { //null is assumed to be an empty map if (mapping == null) { return Collections.EMPTY_MAP; } //do a defenisve copy of the map final Map mappedAttributesBuilder = new HashMap(); f...
static Map parseAttributeToAttributeMapping(final Map mapping) { //null is assumed to be an empty map if (mapping == null) { return Collections.EMPTY_MAP; } //do a defenisve copy of the map final Map mappedAttributesBuilder = new HashMap(); f...
1,119,744
static Map parseAttributeToAttributeMapping(final Map mapping) { //null is assumed to be an empty map if (mapping == null) { return Collections.EMPTY_MAP; } //do a defenisve copy of the map final Map mappedAttributesBuilder = new HashMap(); f...
static Map parseAttributeToAttributeMapping(final Map mapping) { //null is assumed to be an empty map if (mapping == null) { return Collections.EMPTY_MAP; } //do a defenisve copy of the map final Map mappedAttributesBuilder = new HashMap(); f...
1,119,745
static Map parseAttributeToAttributeMapping(final Map mapping) { //null is assumed to be an empty map if (mapping == null) { return Collections.EMPTY_MAP; } //do a defenisve copy of the map final Map mappedAttributesBuilder = new HashMap(); f...
static Map parseAttributeToAttributeMapping(final Map mapping) { //null is assumed to be an empty map if (mapping == null) { return Collections.EMPTY_MAP; } //do a defenisve copy of the map final Map mappedAttributesBuilder = new HashMap(); f...
1,119,746
public void testGetPossibleUserAttributeNames() { HashSet expectedAttributeNames = new HashSet(); expectedAttributeNames.add("shirtColor"); expectedAttributeNames.add("phone"); Set possibleAttributeNames = this.testInstance.getPossibleUserAttributeNames(); assertEquals(expectedAtt...
public void testGetPossibleUserAttributeNames() { HashSet expectedAttributeNames = new HashSet(); expectedAttributeNames.add("shirtColor"); expectedAttributeNames.add("phone"); Set possibleAttributeNames = this.testInstance.getPossibleUserAttributeNames(); assertEquals(expectedAtt...
1,119,748
public Map getUserAttributes(final String uid) { if (uid == null) { throw new IllegalArgumentException("Illegal to invoke getUserAttributes(String) with a null argument."); } return this.backingMap; }
public Map getUserAttributes(final String uid) { if (uid == null) { throw new IllegalArgumentException("Illegal to invoke getUserAttributes(String) with a null argument."); } return this.backingMap; }
1,119,749
public void run() { setProgressOwner(this); setProgressMax(this, 100); NetworkAccess[] nets = getSelectedNetworks(); try { clearStations(); setProgressValue(this, 10); for (int i=0; i<nets.length; i++) { logger.debug("Before get stations"); Station[] newStations = nets[i].retrieve_stations...
public void run() { setProgressOwner(this); setProgressMax(this, 100); NetworkAccess[] nets = getSelectedNetworks(); try { clearStations(); setProgressValue(this, 10); for (int i=0; i<nets.length; i++) { logger.debug("Before get stations"); Station[] newStations = nets[i].retrieve_stations...
1,119,750
public void itemStateChanged(ItemEvent ae) { if(ae.getStateChange() == ItemEvent.SELECTED) { view.addDisplayKey(((AbstractButton)ae.getItem()).getText()); } else if(ae.getStateChange() == ItemEvent.DESELECTED){ view.removeDisplaykey(((AbstractButton)ae.getItem()).getText()); } // view.setDisplayKey(a...
public void itemStateChanged(ItemEvent ae) { if(ae.getStateChange() == ItemEvent.SELECTED) { view.addDisplayKey(((AbstractButton)ae.getItem()).getText()); } else if(ae.getStateChange() == ItemEvent.DESELECTED){ view.removeDisplaykey(((AbstractButton)ae.getItem()).getText()); } // view.setDisplayKey(a...
1,119,751
void drawPlottableNew(Graphics g) { int mean = getMean(); // get new graphics to avoid messing up original Graphics2D g2 = (Graphics2D)g.create(); g2.setClip(LABEL_X_SHIFT, 0, rowWidth, Integer.MAX_VALUE); AffineTransform originalTransform = AffineTransform.getTranslateInstance(LA...
void drawPlottableNew(Graphics g) { int mean = getMean(); // get new graphics to avoid messing up original Graphics2D g2 = (Graphics2D)g.create(); g2.setClip(LABEL_X_SHIFT, 0, rowWidth, Integer.MAX_VALUE); AffineTransform originalTransform = AffineTransform.getTranslateInstance(LA...
1,119,753
protected void setUp() throws Exception { // JUnitDoclet begin method testcase.setUp super.setUp(); short size = 4; intTestData = new int[size]; shortTestData = new short[size]; floatTestData = new float[size]; doubleTestData = new double[size]; for (short i=0; i<size; i++) { sho...
protected void setUp() throws Exception { // JUnitDoclet begin method testcase.setUp super.setUp(); short size = 40; intTestData = new int[size]; shortTestData = new short[size]; floatTestData = new float[size]; doubleTestData = new double[size]; for (short i=0; i<size; i++) { sh...
1,119,754
protected void setUp() throws Exception { // JUnitDoclet begin method testcase.setUp super.setUp(); short size = 4; intTestData = new int[size]; shortTestData = new short[size]; floatTestData = new float[size]; doubleTestData = new double[size]; for (short i=0; i<size; i++) { sho...
protected void setUp() throws Exception { // JUnitDoclet begin method testcase.setUp super.setUp(); short size = 4; intTestData = new int[size]; shortTestData = new short[size]; floatTestData = new float[size]; doubleTestData = new double[size]; for (short i=0; i<size; i++) { sho...
1,119,755
public void init(WebdavServlet servlet, HttpServletRequest req, Properties props, boolean debug) throws WebdavIntfException { super.init(servlet, req, props, debug); namespacePrefix = WebdavUtils.getUrlPrefix(req); namespace = namespacePrefix + "/schema";...
public void init(WebdavServlet servlet, HttpServletRequest req, Properties props, boolean debug) throws WebdavIntfException { super.init(servlet, req, props, debug); namespacePrefix = WebdavUtils.getUrlPrefix(req); namespace = namespacePrefix + "/schema";...
1,119,757
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, Groups groups, String synchId, boolean debug) throws CalFacadeException { this.debug = debug; boolean use...
1,119,758
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,119,759
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,119,760
public void createParticleDisplay(BasicSeismogramDisplay creator){ if(particleDisplay == null){ logger.debug("creating particle display"); particleWindow = new JFrame(); LocalSeismogramImpl seis = (((LocalSeismogramImpl)((DataSetSeismogram)creator.getSeismograms().getFirst()).getSeismogram())); part...
public void createParticleDisplay(BasicSeismogramDisplay creator){ if(particleDisplay == null){ logger.debug("creating particle display"); particleWindow = new JFrame(); LocalSeismogramImpl seis = (((LocalSeismogramImpl)((DataSetSeismogram)creator.getSeismograms().getFirst()).getSeismogram())); part...
1,119,761
public void changeAccess(Object o, Collection aces) throws CalFacadeException { Collection oldAces = getAces(o); try { Acl acl = new Acl(debug); acl.setAces(oldAces); Iterator it = aces.iterator(); while (it.hasNext()) { Ace ace = (Ace)it.next(); acl.removeAccess(ace); a...
public void changeAccess(Object o, Collection aces) throws CalFacadeException { Collection oldAces = getAces(o); try { Acl acl = new Acl(debug); acl.setAces(oldAces); Iterator it = aces.iterator(); while (it.hasNext()) { Ace ace = (Ace)it.next(); acl.removeAccess(ace); a...
1,119,762
public void changeAccess(Object o, Collection aces) throws CalFacadeException { Collection oldAces = getAces(o); try { Acl acl = new Acl(debug); acl.setAces(oldAces); Iterator it = aces.iterator(); while (it.hasNext()) { Ace ace = (Ace)it.next(); acl.removeAccess(ace); a...
public void changeAccess(Object o, Collection aces) throws CalFacadeException { Collection oldAces = getAces(o); try { Acl acl = new Acl(debug); acl.setAces(oldAces); Iterator it = aces.iterator(); while (it.hasNext()) { Ace ace = (Ace)it.next(); acl.removeAccess(ace); a...
1,119,763
public Collection getAces(Object o) throws CalFacadeException { if (!(o instanceof BwShareableDbentity)) { throw new CalFacadeException(CalFacadeException.illegalObjectClass); } BwShareableDbentity sdbe = (BwShareableDbentity)o; return getAces(sdbe, privWriteAcl); }
public Collection getAces(Object o) throws CalFacadeException { if (!(o instanceof BwShareableDbentity)) { throw new CalFacadeException(CalFacadeException.illegalObjectClass); } BwShareableDbentity sdbe = (BwShareableDbentity)o; return getAces(sdbe, privWriteAcl); }
1,119,764
public boolean init(String authenticatedUser, String user, boolean publicAdmin, boolean superUser, Groups groups, String synchId, boolean debug) throws CalFacadeException;
public boolean init(String authenticatedUser, String user, boolean publicAdmin, Groups groups, String synchId, boolean debug) throws CalFacadeException;
1,119,765
public int doEndTag() throws JspException { SelectTag select = (SelectTag) findAncestorWithClass(this, SelectTag.class); if (select == null) throw new JspException("selected-value tag must be nested inside a select tag"); select.addValue(value); return EVAL_PAGE; }
public int doEndTag() throws JspException { SelectTag select = (SelectTag) findAncestorWithClass(this, SelectTag.class); if (select == null) throw new JspException("selected-value tag must be nested inside a select tag"); select.addValue(value); return EVAL_PAGE; }
1,119,766
public void applyInPlace(float[] data) { int w = Math.round(data.length*width); double[] coeff = getCoefficients(w); double omega = coeff[0]; double f0 = coeff[1]; double f1 = coeff[2]; for (int i=0; i < w ; i++) { data[i] = (float)(data[i] * (f0 - f1 * Math.cos(omega*i))); data[data...
public void applyInPlace(float[] data) { int w = Math.round(data.length*width); double[] coeff = getCoefficients(w); double omega = coeff[0]; double f0 = coeff[1]; double f1 = coeff[2]; for (int i=0; i < w ; i++) { data[i] = (float)(data[i] * (f0 - f1 * Math.cos(omega*i))); data[data...
1,119,767
public String performAction(HttpServletRequest request, HttpServletResponse response, UtilActionForm frm, MessageResources messages) throws Throwable { String forward = "success"; ActionForm form = (ActionForm)frm; setup(r...
public String performAction(HttpServletRequest request, HttpServletResponse response, UtilActionForm frm, MessageResources messages) throws Throwable { String forward = "success"; ActionForm form = (ActionForm)frm; setup(r...
1,119,768
protected Serializable getCacheKey(Map querySeed) { final HashMap cacheKey = new HashMap(); if (this.cacheKeyAttributes == null || this.cacheKeyAttributes.size() == 0) { final String defaultAttrName = this.getDefaultAttributeName(); if (defaultAttrName == null...
protected Serializable getCacheKey(Map querySeed) { final HashMap cacheKey = new HashMap(); if (this.cacheKeyAttributes == null || this.cacheKeyAttributes.size() == 0) { final String defaultAttrName = this.getDefaultAttributeName(); if (defaultAttrName == null...
1,119,769
protected Serializable getCacheKey(Map querySeed) { final HashMap cacheKey = new HashMap(); if (this.cacheKeyAttributes == null || this.cacheKeyAttributes.size() == 0) { final String defaultAttrName = this.getDefaultAttributeName(); if (defaultAttrName == null...
protected Serializable getCacheKey(Map querySeed) { final HashMap cacheKey = new HashMap(); if (this.cacheKeyAttributes == null || this.cacheKeyAttributes.size() == 0) { final String defaultAttrName = this.getDefaultAttributeName(); if (defaultAttrName == null...
1,119,770
protected Serializable getCacheKey(Map querySeed) { final HashMap cacheKey = new HashMap(); if (this.cacheKeyAttributes == null || this.cacheKeyAttributes.size() == 0) { final String defaultAttrName = this.getDefaultAttributeName(); if (defaultAttrName == null...
protected Serializable getCacheKey(Map querySeed) { final HashMap cacheKey = new HashMap(); if (this.cacheKeyAttributes == null || this.cacheKeyAttributes.size() == 0) { final String defaultAttrName = this.getDefaultAttributeName(); if (defaultAttrName == null...
1,119,771
public Element retrieve() throws java.net.MalformedURLException, java.io.IOException, org.xml.sax.SAXException, javax.xml.transform.TransformerException { String xlink = element.getAttribute("xlink:href"); int sharpIndex = xlink.indexOf("#"); String fragment = xlink.substring(sharpIndex+1, xlink.length()); ...
public Element retrieve() throws java.net.MalformedURLException, java.io.IOException, org.xml.sax.SAXException, javax.xml.transform.TransformerException { String xlink = element.getAttribute("xlink:href"); int sharpIndex = xlink.indexOf("#"); String fragment = xlink.substring(sharpIndex+1, xlink.length()); ...
1,119,772
public ExtensionPolyline() { this.setFill(true); this.setFillXOR(false); this.setOutline(true); this.setOutlineXOR(false); this.setLineWidth(1); this.setLineStyle(org.eclipse.draw2d.Graphics.LINE_SOLID); this.setForegroundColor(org.eclipse.draw2d.ColorConstants.black); this.setBackgroundColor(org.ecli...
public ExtensionPolyline() { this.setFill(true); this.setFillXOR(false); this.setOutline(true); this.setOutlineXOR(false); this.setLineWidth(1); this.setLineStyle(org.eclipse.draw2d.Graphics.LINE_SOLID); this.setForegroundColor(org.eclipse.draw2d.ColorConstants.black); this.setBackgroundColor(org.ecli...
1,119,775
private org.eclipse.draw2d.RotatableDecoration createTargetDecoration() { org.eclipse.draw2d.PolygonDecoration df = new org.eclipse.draw2d.PolygonDecoration(); df.setFill(true); df.setFillXOR(false); df.setOutline(true); df.setOutlineXOR(false); df.setLineWidth(1); df.setLineStyle(org.eclipse.draw2d.Gra...
private org.eclipse.draw2d.RotatableDecoration createTargetDecoration() { org.eclipse.draw2d.PolygonDecoration df = new org.eclipse.draw2d.PolygonDecoration(); df.setFill(true); df.setFillXOR(false); df.setOutline(true); df.setOutlineXOR(false); df.setLineWidth(1); df.setLineStyle(org.eclipse.draw2d.Gra...
1,119,776
private org.eclipse.draw2d.RotatableDecoration createTargetDecoration() { org.eclipse.draw2d.PolygonDecoration df = new org.eclipse.draw2d.PolygonDecoration(); df.setFill(true); df.setFillXOR(false); df.setOutline(true); df.setOutlineXOR(false); df.setLineWidth(1); df.setLineStyle(org.eclipse.draw2d.Gra...
private org.eclipse.draw2d.RotatableDecoration createTargetDecoration() { org.eclipse.draw2d.PolygonDecoration df = new org.eclipse.draw2d.PolygonDecoration(); df.setFill(true); df.setFillXOR(false); df.setOutline(true); df.setOutlineXOR(false); df.setLineWidth(1); df.setLineStyle(org.eclipse.draw2d.Gra...
1,119,777
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } String reqpar = request....
public String doAction(HttpServletRequest request, HttpServletResponse response, BwSession sess, BwActionFormBase form) throws Throwable { if (form.getGuest()) { return "noAccess"; // First line of defence } String reqpar = request....
1,119,778
public char[] encode() throws AccessException { startEncoding(); if (aces != null) { Iterator it = aces.iterator(); while (it.hasNext()) { Ace ace = (Ace)it.next(); ace.encode(this); } } return getEncoding(); }
public char[] encode() throws AccessException { startEncoding(); if (aces != null) { Iterator it = aces.iterator(); while (it.hasNext()) { Ace ace = (Ace)it.next(); if (!ace.getInherited()) { ace.encode(this); } } } return getEncoding(); }
1,119,779
public void dump(Logger log, String indent) { StringBuffer sb = new StringBuffer(indent); sb.append("<prop-filter name=\""); sb.append(name); sb.append("\">\n"); log.debug(sb.toString()); if (isNotDefined) { log.debug(indent + " " + "<is-not-defined/>\n"); } else if (timeRange != null) { ...
public void dump(Logger log, String indent) { StringBuffer sb = new StringBuffer(indent); sb.append("<prop-filter name=\""); sb.append(name); sb.append("\">\n"); log.debug(sb.toString()); if (isNotDefined) { log.debug(indent + " " + "<is-not-defined/>\n"); } else if (timeRange != null) { ...
1,119,780
public void run() { int maxFail = 5; setFinished(false); consecutiveFailures = 0; quitThread = false; while (!quitThread) { try { checkNet(); } catch (RuntimeException e) { if(consecutiveFa...
public void run() { int maxFail = 5; setFinished(false); consecutiveFailures = 0; quitThread = false; while (!quitThread) { try { checkNet(); } catch (RuntimeException e) { if(consecutiveFa...
1,119,781
public int doEndTag() throws JspException { try { JspWriter out = pageContext.getOut(); // get locale-specific stuff locale = getDefaultLocale(); if (resourceBundle == null) resourceBundle = getDefaultResourceBundle(); if (timeZone == null) timeZone = getDefaultTimeZone(); ...
public int doEndTag() throws JspException { try { JspWriter out = pageContext.getOut(); // get locale-specific stuff locale = getDefaultLocale(); if (resourceBundle == null) resourceBundle = getDefaultResourceBundle(); if (timeZone == null) timeZone = getDefaultTimeZone(); ...
1,119,782
public int doEndTag() throws JspException { try { JspWriter out = pageContext.getOut(); // get locale-specific stuff locale = getDefaultLocale(); if (resourceBundle == null) resourceBundle = getDefaultResourceBundle(); if (timeZone == null) timeZone = getDefaultTimeZone(); ...
public int doEndTag() throws JspException { try { JspWriter out = pageContext.getOut(); // get locale-specific stuff locale = getDefaultLocale(); if (resourceBundle == null) resourceBundle = getDefaultResourceBundle(); if (timeZone == null) timeZone = getDefaultTimeZone(); ...
1,119,783
public BasicSeismogramDisplay addDisplay(DataSetSeismogram[] dss){ return addDisplay(dss, DisplayUtils.getSeismogramNames(dss)); }
public BasicSeismogramDisplay addDisplay(DataSetSeismogram[] dss){ return addDisplay(dss, globalRegistrar, globalRegistrar); }
1,119,784
public void testJavaBaseFieldAssignment() { try { ATMessage message = new NATMethodInvocation( AGSymbol.alloc("at"), NATTable.EMPTY); message.base_setArguments( new NATTable(new ATObject[] { closures.base_getLength() })); ATObject element = message.base_sendTo(closures); element...
public void testJavaBaseFieldAssignment() { try { ATMessage message = new NATMethodInvocation( AGSymbol.jAlloc("at"), NATTable.EMPTY); message.base_setArguments( new NATTable(new ATObject[] { closures.base_getLength() })); ATObject element = message.base_sendTo(closures); elemen...
1,119,785
public void testSimulatedBaseFieldAccess() { try { ATObject accessor = closures.meta_select(closures, AGSymbol.alloc("at")); ATObject element = accessor.base_asClosure().base_apply( new NATTable(new ATObject[] { closures.meta_select(closures, AGSymbol.alloc("length"))})); element.base_asClosure().base...
public void testSimulatedBaseFieldAccess() { try { ATObject accessor = closures.meta_select(closures, AGSymbol.jAlloc("at")); ATObject element = accessor.base_asClosure().base_apply( new NATTable(new ATObject[] { closures.meta_select(closures, AGSymbol.alloc("length"))})); element.base_asClosure().bas...
1,119,786
public void testSimulatedBaseFieldAccess() { try { ATObject accessor = closures.meta_select(closures, AGSymbol.alloc("at")); ATObject element = accessor.base_asClosure().base_apply( new NATTable(new ATObject[] { closures.meta_select(closures, AGSymbol.alloc("length"))})); element.base_asClosure().base...
public void testSimulatedBaseFieldAccess() { try { ATObject accessor = closures.meta_select(closures, AGSymbol.alloc("at")); ATObject element = accessor.base_asClosure().base_apply( new NATTable(new ATObject[] { closures.meta_select(closures, AGSymbol.jAlloc("length"))})); element.base_asClosure().bas...
1,119,787
public void testSimulatedBaseFieldAssignment() { try { ATMessage message = new NATMethodInvocation( AGSymbol.alloc("at"), NATTable.EMPTY); message.meta_assignVariable( AGSymbol.alloc("arguments"), new NATTable(new ATObject[] { closures.base_getLength() })); ATObject element = mes...
public void testSimulatedBaseFieldAssignment() { try { ATMessage message = new NATMethodInvocation( AGSymbol.jAlloc("at"), NATTable.EMPTY); message.meta_assignVariable( AGSymbol.alloc("arguments"), new NATTable(new ATObject[] { closures.base_getLength() })); ATObject element = me...
1,119,788
public void testSimulatedBaseFieldAssignment() { try { ATMessage message = new NATMethodInvocation( AGSymbol.alloc("at"), NATTable.EMPTY); message.meta_assignVariable( AGSymbol.alloc("arguments"), new NATTable(new ATObject[] { closures.base_getLength() })); ATObject element = mes...
public void testSimulatedBaseFieldAssignment() { try { ATMessage message = new NATMethodInvocation( AGSymbol.alloc("at"), NATTable.EMPTY); message.meta_assignVariable( AGSymbol.jAlloc("arguments"), new NATTable(new ATObject[] { closures.base_getLength() })); ATObject element = me...
1,119,789
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:"...
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.jAlloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:...
1,119,790
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:"...
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.jAlloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:...
1,119,791
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:"...
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.jAlloc("ifTrue:ifFalse:...
1,119,792
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:"...
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:"...
1,119,793
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:"...
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:"...
1,119,794
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:"...
public void testSimulatedBaseInvocation() { try { True.meta_invoke( True, AGSymbol.alloc("ifTrue:"), new NATTable(new ATObject[] { success })); True.meta_invoke( True, AGSymbol.alloc("ifFalse:"), new NATTable(new ATObject[] { fail })); True.meta_invoke( True, AGSymbol.alloc("ifTrue:ifFalse:"...
1,119,795
public ATNil meta_addField(ATField field) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.alloc("addField"), new NATTable(new ATObject[] { field }) ); return NATNil._INSTANCE_; }
public ATNil meta_addField(ATField field) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("addField"), new NATTable(new ATObject[] { field }) ); return NATNil._INSTANCE_; }
1,119,796
public ATNil meta_addMethod(ATMethod method) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.alloc("addMethod"), new NATTable(new ATObject[] { method }) ); return NATNil._INSTANCE_; }
public ATNil meta_addMethod(ATMethod method) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("addMethod"), new NATTable(new ATObject[] { method }) ); return NATNil._INSTANCE_; }
1,119,797
public ATNil meta_assignField(ATObject receiver, ATSymbol selector, ATObject value) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.alloc("assignField"), new NATTable(new ATObject[] { receiver, selector, value }) ); return NATNil._INSTANCE_; }
public ATNil meta_assignField(ATObject receiver, ATSymbol selector, ATObject value) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("assignField"), new NATTable(new ATObject[] { receiver, selector, value }) ); return NATNil._INSTANCE_; }
1,119,798
public ATNil meta_assignVariable(ATSymbol name, ATObject value) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.alloc("assignVariable"), new NATTable(new ATObject[] { name, value }) ); return NATNil._INSTANCE_; }
public ATNil meta_assignVariable(ATSymbol name, ATObject value) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("assignVariable"), new NATTable(new ATObject[] { name, value }) ); return NATNil._INSTANCE_; }
1,119,799
public ATObject meta_clone() throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("clone"), NATTable.EMPTY )); }
public ATObject meta_clone() throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("clone"), NATTable.EMPTY )); }
1,119,800
public ATNil meta_defineField(ATSymbol name, ATObject value) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.alloc("defineField"), new NATTable(new ATObject[] { name, value }) ); return NATNil._INSTANCE_; }
public ATNil meta_defineField(ATSymbol name, ATObject value) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("defineField"), new NATTable(new ATObject[] { name, value }) ); return NATNil._INSTANCE_; }
1,119,801
public ATObject meta_doesNotUnderstand(ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("doesNotUnderstand"), new NATTable(new ATObject[] { selector }) )); }
public ATObject meta_doesNotUnderstand(ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("doesNotUnderstand"), new NATTable(new ATObject[] { selector }) )); }
1,119,802
public ATObject meta_eval(ATContext ctx) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("eval"), new NATTable(new ATObject[] { ctx }) )); }
public ATObject meta_eval(ATContext ctx) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("eval"), new NATTable(new ATObject[] { ctx }) )); }
1,119,803
public ATObject meta_extend(ATClosure code) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("extend"), new NATTable(new ATObject[] { code }) )); }
public ATObject meta_extend(ATClosure code) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("extend"), new NATTable(new ATObject[] { code }) )); }
1,119,804
public ATObject meta_getDynamicParent() throws InterpreterException { return Reflection.downObject(mirror_.meta_select( mirror_, AGSymbol.alloc("dynamicParent"))); }
public ATObject meta_getDynamicParent() throws InterpreterException { return Reflection.downObject(mirror_.meta_select( mirror_, AGSymbol.jAlloc("dynamicParent"))); }
1,119,805
public ATObject meta_getLexicalParent() throws InterpreterException { return Reflection.downObject(mirror_.meta_select( mirror_, AGSymbol.alloc("lexicalParent"))); }
public ATObject meta_getLexicalParent() throws InterpreterException { return Reflection.downObject(mirror_.meta_select( mirror_, AGSymbol.jAlloc("lexicalParent"))); }
1,119,806
public ATField meta_grabField(ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("getField"), new NATTable(new ATObject[] { selector }) )).base_asField(); }
public ATField meta_grabField(ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("getField"), new NATTable(new ATObject[] { selector }) )).base_asField(); }
1,119,807
public ATMethod meta_grabMethod(ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("getMethod"), new NATTable(new ATObject[] { selector }) )).base_asMethod(); }
public ATMethod meta_grabMethod(ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("getMethod"), new NATTable(new ATObject[] { selector }) )).base_asMethod(); }
1,119,808
public ATObject meta_invoke(ATObject receiver, ATSymbol selector, ATTable arguments) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("invoke"), new NATTable(new ATObject[] { receiver, selector, arguments }) )); }
public ATObject meta_invoke(ATObject receiver, ATSymbol selector, ATTable arguments) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("invoke"), new NATTable(new ATObject[] { receiver, selector, arguments }) )); }
1,119,809
public ATTable meta_listFields() throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("listFields"), NATTable.EMPTY )).base_asTable(); }
public ATTable meta_listFields() throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("listFields"), NATTable.EMPTY )).base_asTable(); }
1,119,810
public ATTable meta_listMethods() throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("listMethods"), NATTable.EMPTY )).base_asTable(); }
public ATTable meta_listMethods() throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("listMethods"), NATTable.EMPTY )).base_asTable(); }
1,119,811
public ATObject meta_lookup(ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("lookup"), new NATTable(new ATObject[] { selector }) )); }
public ATObject meta_lookup(ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("lookup"), new NATTable(new ATObject[] { selector }) )); }
1,119,812
public ATObject meta_newInstance(ATTable initargs) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("newInstance"), new NATTable(new ATObject[] { initargs }) )); }
public ATObject meta_newInstance(ATTable initargs) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("newInstance"), new NATTable(new ATObject[] { initargs }) )); }
1,119,813
public ATObject meta_quote(ATContext ctx) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("quote"), new NATTable(new ATObject[] { ctx }) )); }
public ATObject meta_quote(ATContext ctx) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("quote"), new NATTable(new ATObject[] { ctx }) )); }
1,119,814
public ATBoolean meta_respondsTo(ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("respondsTo"), new NATTable(new ATObject[] { selector }) )).base_asBoolean(); }
public ATBoolean meta_respondsTo(ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("respondsTo"), new NATTable(new ATObject[] { selector }) )).base_asBoolean(); }
1,119,815
public ATObject meta_select(ATObject receiver, ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("select"), new NATTable(new ATObject[] { receiver, selector }) )); }
public ATObject meta_select(ATObject receiver, ATSymbol selector) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("select"), new NATTable(new ATObject[] { receiver, selector }) )); }
1,119,816
public ATNil meta_send(ATAsyncMessage message) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.alloc("send"), new NATTable(new ATObject[] { message }) ); return NATNil._INSTANCE_; }
public ATNil meta_send(ATAsyncMessage message) throws InterpreterException { mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("send"), new NATTable(new ATObject[] { message }) ); return NATNil._INSTANCE_; }
1,119,817
public ATObject meta_share(ATClosure code) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.alloc("share"), new NATTable(new ATObject[] { code }) )); }
public ATObject meta_share(ATClosure code) throws InterpreterException { return Reflection.downObject(mirror_.meta_invoke( mirror_, AGSymbol.jAlloc("share"), new NATTable(new ATObject[] { code }) )); }
1,119,818
FilterPanel( SortedSet tags, DataDictionary dataDictionary ) { setLayout( new FlowLayout() ); enablePanel( false ); checkBox.setPreferredSize( new Dimension(25, 25) ); add( checkBox ); comboBox.setPreferredSize( new Dimension(200, 25) ); add( comboBox ); operatorComboBox.setPreferredSize( new Dime...
FilterPanel( SortedSet tags, DataDictionary dataDictionary ) { setLayout( new FlowLayout() ); enablePanel( false ); checkBox.setPreferredSize( new Dimension(25, 25) ); add( checkBox ); comboBox.setPreferredSize( new Dimension(200, 25) ); add( comboBox ); operatorComboBox.setPreferredSize( new Dime...
1,119,819
public ControlPanel(final AudioPlayer owner) { this(owner, PREV | PLAY | NEXT | RANDOM); }
public ControlPanel(final AudioPlayer owner) { this(owner, PREV | PLAY | NEXT | PLAYALL | RANDOM); }
1,119,821
public void actionPerformed(ActionEvent e) { MainPanel mainPanel = (MainPanel)owner.getPanelInstance(); mainPanel.getPlaylist().setRandom(random.isSelected()); }
public void actionPerformed(ActionEvent e) { MainPanel mainPanel = (MainPanel)owner.getPanelInstance(); mainPanel.getPlaylist().setPlayAll(playAll.isSelected()); }
1,119,822
public ATObject base_reflect_(ATObject reflectee) throws InterpreterException { return NATMirrorFactory._INSTANCE_.base_createMirror(reflectee); }
public ATObject base_reflect_(ATObject reflectee) throws InterpreterException { return NATIntrospectiveMirror.atValue(reflectee); }
1,119,823
public int doStartTag() throws JspException { HttpServletRequest request = (HttpServletRequest) pageContext.getRequest(); String[] roles = role.split(","); for (int i = 0; i < roles.length; i++) { if (request.isUserInRole(roles[i])) return EVAL_BODY_INCLUDE; } return SKIP_BODY; }
public int doStartTag() throws JspException { HttpServletRequest request = (HttpServletRequest) pageContext.getRequest(); String[] roles = role.split(","); for (int i = 0; i < roles.length; i++) { if (request.isUserInRole(roles[i].trim())) return EVAL_BODY_INCLUDE; } return SKIP_BODY; }
1,119,824
protected String evalString(Node context, String path) { try { return xpath.eval(config, "@datasetid").str(); } catch (javax.xml.transform.TransformerException e) { logger.error("Couldn't get String", e); } // end of try-catch return null; }
protected String evalString(Node context, String path) { try { return xpath.eval(config, path).str(); } catch (javax.xml.transform.TransformerException e) { logger.error("Couldn't get String", e); } // end of try-catch return null; }
1,119,826
public Object getParamter(String name) { if (parameterCache.containsKey(name)) { return parameterCache.get(name); } // end of if (parameterCache.containsKey(name)) NodeList nList = evalNodeList(config, "dataset/parameter[name/text()="+ dquote+name+dquote+"]"); if (nList != null && nList.getL...
public Object getParamter(String name) { if (parameterCache.containsKey(name)) { return parameterCache.get(name); } // end of if (parameterCache.containsKey(name)) NodeList nList = evalNodeList(config, "parameter[name/text()="+ dquote+name+dquote+"]"); if (nList != null && nList.getLength() ...
1,119,827
public Object getParamter(String name) { if (parameterCache.containsKey(name)) { return parameterCache.get(name); } // end of if (parameterCache.containsKey(name)) NodeList nList = evalNodeList(config, "dataset/parameter[name/text()="+ dquote+name+dquote+"]"); if (nList != null && nList.getL...
public Object getParamter(String name) { if (parameterCache.containsKey(name)) { return parameterCache.get(name); } // end of if (parameterCache.containsKey(name)) NodeList nList = evalNodeList(config, "dataset/parameter[name/text()="+ dquote+name+dquote+"]"); if (nList != null && nList.getL...
1,119,828
public BwFreeBusy getFreeBusy(CalSvcI svci, BwCalendar cal, String account) throws WebdavException { try { BwUser user = svci.findUser(account); if (user == null) { throw WebdavIntfException.unauthorized(); } BwFreeBusy fb = svci.getFreeBusy(cal, user, ...
public BwFreeBusy getFreeBusy(CalSvcI svci, BwCalendar cal, String account) throws WebdavException { try { BwUser user = svci.findUser(account); if (user == null) { throw WebdavIntfException.unauthorized(); } if (svci.isUserRoot(cal)) { cal = null; } BwFre...
1,119,830