KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > celtix > bus > configuration > spring > JaxbBigIntegerEditor


1 package org.objectweb.celtix.bus.configuration.spring;
2
3 import java.math.BigInteger JavaDoc;
4
5 public class JaxbBigIntegerEditor extends JaxbPropertyEditor {
6
7     public void setAsText(String JavaDoc text) {
8         setValue(new BigInteger JavaDoc(text));
9     }
10 }
11
Popular Tags