Example usage for javax.xml.registry.infomodel Classification setClassifiedObject

List of usage examples for javax.xml.registry.infomodel Classification setClassifiedObject

Introduction

In this page you can find the example usage for javax.xml.registry.infomodel Classification setClassifiedObject.

Prototype

void setClassifiedObject(RegistryObject classifiedObject) throws JAXRException;

Source Link

Document

Sets the object that is being classified.

Usage

From source file:it.cnr.icar.eric.client.xml.registry.infomodel.RegistryObjectImpl.java

/** Internal method, does not set modified flag. */
private void internalAddClassification(Classification c) throws JAXRException {
    getClassifications().add(c);//from  w w  w. java 2 s .c  om
    c.setClassifiedObject(this);
}