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

com.imsweb.validation.ValidationLookupItem Maven / Gradle / Ivy

There is a newer version: 021-11
Show newest version
/*
 * Copyright (C) 2010 Information Management Services, Inc.
 */
package com.imsweb.validation;

/**
 * Interface for a lookup item (lookups are collection of lookup items).
 * 

* Created on Apr 5, 2011 by depryf * @author depryf */ public interface ValidationLookupItem { /** * Returns the key corresponding to this lookup item. *

* Created on Mar 28, 2010 by depryf * @return the key corresponding to this lookup item. */ String getKey(); /** * Sets the key corresponding to this lookup item. *

* Created on Mar 28, 2010 by depryf * @param key key */ void setKey(String key); /** * Returns the value corresponding to this lookup item. *

* Created on Mar 28, 2010 by depryf * @return the value corresponding to this lookup item. */ String getValue(); /** * Sets the value corresponding to this lookup item. *

* Created on Mar 28, 2010 by depryf * @param value value */ void setValue(String value); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy