# Copyright: Copyright 2009 Topic Maps Lab, University of Leipzig. # License: Apache License, Version 2.0 module Java::OrgTmapiCore::Occurrence include RTM::Occurrence extend Superiseable # Returns the Topic this Occurrence belongs to. # # :call-seq: # parent -> Topic # def parent getParent end alias :reverse_children :parent # Returns the lexical representation of the value of the Occurrence. # # For the datatype String the string itself is returned # For the datatype anyURI the Locator.getReference -> String is returned. # # :call-seq: # value -> String # def value getValue end end