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

com.alachisoft.ncache.ncactivate.utils.StringRef Maven / Gradle / Ivy

There is a newer version: 5.3.3
Show newest version
/*
 * 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