/******************************************************************************* * Copyright (c) 2004, 2007-2008 IBM Corporation and Cambridge Semantics Incorporated. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * File: $Source$ * Created by: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Created on: Generated Source from org.openanzo.jdbc.utils.opgen.jet * Revision: $Id$ * * Contributors: * IBM Corporation - initial API and implementation * Cambridge Semantics Incorporated - Fork to Anzo *******************************************************************************/ package org.openanzo.ontologies.system; /** * Implementations of this listener may be registered with instances of org.openanzo.ontologies.system.Parameter to * receive notification when properties changed, added or removed. * <br> */ public interface ParameterListener extends org.openanzo.rdf.jastor.ThingListener { /** * Called when name has changed * @param source the affected instance of org.openanzo.ontologies.system.Parameter */ public void nameChanged(org.openanzo.ontologies.system.Parameter source); /** * Called when nullAllowed has changed * @param source the affected instance of org.openanzo.ontologies.system.Parameter */ public void nullAllowedChanged(org.openanzo.ontologies.system.Parameter source); /** * Called when parameterLocation has changed * @param source the affected instance of org.openanzo.ontologies.system.Parameter */ public void parameterLocationChanged(org.openanzo.ontologies.system.Parameter source); /** * Called when type has changed * @param source the affected instance of org.openanzo.ontologies.system.Parameter */ public void typeChanged(org.openanzo.ontologies.system.Parameter source); }