com.alachisoft.ncache.ncactivate.utils.StringRef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nc-activate Show documentation
Show all versions of nc-activate Show documentation
internal package of Alachisoft.
/*
* StringRef.java
*
* Created on October 9, 2006, 3:10 PM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package com.alachisoft.ncache.ncactivate.utils;
/**
* @author Administrator
*/
public class StringRef {
public String strData;
/**
* Creates a new instance of StringRef
*/
public StringRef() {
strData = new String();
}
public String BaseString() {
return strData;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy