Package de.innovationgate.utils

Examples of de.innovationgate.utils.NullPlaceHolder


        if (this.profile.hasItem(name)) {
            return this.profile.getItemValue(name);
        }
        else {
            // Symbolizes that the item does not exist
            return new NullPlaceHolder();
        }
  }
View Full Code Here


    /**
     * @param value
     */
    protected Object nullPlaceholder(Object value) {
        return (value != null ? value : new NullPlaceHolder());
    }
View Full Code Here

    }

    protected void mapNonExistentDocIndicator(Map cacheMap, Object cacheKey, int docType) {

        if (getSessionContext().isCacheWritingEnabled() && isDoctypeCacheable(docType)) {
            cacheMap.put(cacheKey, new NullPlaceHolder());
        }

    }
View Full Code Here

        if (this.document.hasItem(name)) {
            return this.document.getItemValue(name);
        }
        else {
            // Symbolizes that no value could be found
            return new NullPlaceHolder();
        }
  }
View Full Code Here

TOP

Related Classes of de.innovationgate.utils.NullPlaceHolder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.