Search Results
OK to copy?
Examples 1 through 10 of
176 (0.0010 seconds)
Class:
jsp2.examples.simpletag.RepeatSimpleTag
©,
Rating:
100% of 2,
C1
Class: jsp2.examples.simpletag.RepeatSimpleTag ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.util.Interval ©, Rating: 0% of 0, C1
Class: com.technoetic.xplanner.util.Interval ©, Rating: 0% of 0, C1
Class: org.apache.axis.types.UnsignedShort ©, Rating: 100% of 1, C1
Class: org.apache.axis.types.UnsignedByte ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.assertions.gui.MD5HexAssertionGUI ©, Rating: 0% of 0, C1
Class: org.apache.jmeter.functions.IterationCounter ©, Rating: 0% of 0, C2
Class: org.apache.batik.css.engine.value.FloatValue ©, Rating: 0% of 0, C2
Class: org.apache.batik.dom.svg.SVGOMAnimatedNumber ©, Rating: 0% of 0, C1
32 public void doTag() throws JspException, IOException {
33 for (int i=0; i<num; i++) {
34 getJspContext().setAttribute("count", String.valueOf( i + 1 ) );
35 getJspBody().invoke(null);
36 }
Class: jsp2.examples.simpletag.RepeatSimpleTag ©, Rating: 0% of 0, C1
32 public void doTag() throws JspException, IOException {
33 for (int i=0; i<num; i++) {
34 getJspContext().setAttribute("count", String.valueOf( i + 1 ) );
35 getJspBody().invoke(null);
36 }
Class: com.technoetic.xplanner.util.Interval ©, Rating: 0% of 0, C1
57 return String.valueOf(low);
58 } else {
59 return String.valueOf(low) + "-" + String.valueOf(high);
60 }
61 }
Class: com.technoetic.xplanner.util.Interval ©, Rating: 0% of 0, C1
55 public String toString() {
56 if (low == high) {
57 return String.valueOf(low);
58 } else {
59 return String.valueOf(low) + "-" + String.valueOf(high);
Class: org.apache.axis.types.UnsignedShort ©, Rating: 100% of 1, C1
089 public void setValue(long sValue) throws NumberFormatException {
090 if (isValid(sValue) == false)
091 throw new NumberFormatException(
092 Messages.getMessage("badUnsignedShort00") +
093 String.valueOf(sValue) + "]");
Class: org.apache.axis.types.UnsignedByte ©, Rating: 0% of 0, C1
091 public void setValue(long sValue) throws NumberFormatException {
092 if (isValid(sValue) == false)
093 throw new NumberFormatException(
094 Messages.getMessage("badUnsignedByte00") +
095 String.valueOf(sValue) + "]");
Class: org.apache.jmeter.assertions.gui.MD5HexAssertionGUI ©, Rating: 0% of 0, C1
077 super.configure(el);
078 MD5HexAssertion assertion = (MD5HexAssertion)el;
079 this.md5HexInput.setText(String.valueOf(assertion.getAllowedMD5Hex()));
080 }
081
Class: org.apache.jmeter.functions.IterationCounter ©, Rating: 0% of 0, C2
Class: org.apache.batik.css.engine.value.FloatValue ©, Rating: 0% of 0, C2
069 throw new DOMException(DOMException.SYNTAX_ERR, "");
070 }
071 String s = String.valueOf(value);
072 if (s.endsWith(".0")) {
073 s = s.substring(0, s.length() - 2);
Class: org.apache.batik.dom.svg.SVGOMAnimatedNumber ©, Rating: 0% of 0, C1
117 */
118 public void setBaseVal(float baseVal) throws DOMException {
119 element.setAttributeNS(namespaceURI, localName,
120 String.valueOf(baseVal));
121 }