Uses of Interface
net.sf.okapi.common.observer.IObserver
-
Packages that use IObserver Package Description net.sf.okapi.common.observer Interfaces and base classes to implement the Observer pattern.net.sf.okapi.common.pipeline Interfaces and classes to implement and manage pipelines.net.sf.okapi.common.pipelinebuilder net.sf.okapi.steps.sentencealigner -
-
Uses of IObserver in net.sf.okapi.common.observer
Methods in net.sf.okapi.common.observer that return types with arguments of type IObserver Modifier and Type Method Description List<IObserver>BaseObservable. getObservers()List<IObserver>IObservable. getObservers()Returns list of observers registered with the Observable.Methods in net.sf.okapi.common.observer with parameters of type IObserver Modifier and Type Method Description voidBaseObservable. addObserver(IObserver observer)voidIObservable. addObserver(IObserver observer)Attaches a observer to the Observable.voidWeakReferenceObservable. addObserver(IObserver observer)voidBaseObservable. deleteObserver(IObserver observer)voidIObservable. deleteObserver(IObserver observer)Detaches a previously attached observer to the observable.voidWeakReferenceObservable. deleteObserver(IObserver observer)protected voidBaseObservable. wrappedNotify(IObserver observer, IObservable observable, Object arg)This method is intended to encapsulate the notification semantics, in order to let extended classes to implement their own version. -
Uses of IObserver in net.sf.okapi.common.pipeline
Classes in net.sf.okapi.common.pipeline that implement IObserver Modifier and Type Class Description classPipelineDefault implementations of theIPipelineinterface.Methods in net.sf.okapi.common.pipeline that return types with arguments of type IObserver Modifier and Type Method Description List<IObserver>Pipeline. getObservers()Methods in net.sf.okapi.common.pipeline with parameters of type IObserver Modifier and Type Method Description voidPipeline. addObserver(IObserver observer)voidPipeline. deleteObserver(IObserver observer) -
Uses of IObserver in net.sf.okapi.common.pipelinebuilder
Classes in net.sf.okapi.common.pipelinebuilder that implement IObserver Modifier and Type Class Description classXPipelineMethods in net.sf.okapi.common.pipelinebuilder that return types with arguments of type IObserver Modifier and Type Method Description List<IObserver>XPipeline. getObservers()Methods in net.sf.okapi.common.pipelinebuilder with parameters of type IObserver Modifier and Type Method Description voidXPipeline. addObserver(IObserver observer)voidXPipeline. deleteObserver(IObserver observer) -
Uses of IObserver in net.sf.okapi.steps.sentencealigner
Classes in net.sf.okapi.steps.sentencealigner that implement IObserver Modifier and Type Class Description classSentenceAlignerStepAlign sentences between source and target paragraphs (TextUnits) and produce a TMX file with aligned sentences.
-