All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.xml.rpc.holders.LongHolder Maven / Gradle / Ivy

There is a newer version: 2.0.0.Final
Show newest version
package javax.xml.rpc.holders;

/** A holder for longs.
 * 
 * @author [email protected]
 */
public final class LongHolder implements Holder
{
   public long value;

   public LongHolder()
   {

   }

   public LongHolder(long value)
   {
      this.value = value;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy