Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.9.0)

E52944-01


javax.ide.extension
Class BooleanVisitor

java.lang.Object
  extended by javax.ide.extension.ElementVisitor
      extended by javax.ide.extension.BooleanVisitor


public abstract class BooleanVisitor
extends ElementVisitor

Visitor for handling elements of type xs:boolean. Subclasses provide an implementation of booleanValue( ElementContext, boolean ), which is called when a boolean value is retrieved for the element.


Field Summary

 

Fields inherited from class javax.ide.extension.ElementVisitor
KEY_LOCATOR

 

Constructor Summary
BooleanVisitor()
           

 

Method Summary
protected abstract  void booleanValue(ElementContext context, boolean value)
          Called when the visitor encounters a boolean value.
 void end(ElementEndContext end)
          Visit the end tag of an xml element.
 void start(ElementStartContext start)
          Visit the start tag of an xml element.

 

Methods inherited from class javax.ide.extension.ElementVisitor
getClassLoader, getResourceBundle, log

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Constructor Detail

BooleanVisitor

public BooleanVisitor()

Method Detail

start

public final void start(ElementStartContext start)
Description copied from class: ElementVisitor
Visit the start tag of an xml element.

This implementation does nothing.

Overrides:
start in class ElementVisitor
Parameters:
start - information about the xml start tag.

end

public final void end(ElementEndContext end)
Description copied from class: ElementVisitor
Visit the end tag of an xml element.

This implementation does nothing.

Overrides:
end in class ElementVisitor
Parameters:
end - information about the xml end tag.

booleanValue

protected abstract void booleanValue(ElementContext context,
                                     boolean value)
Called when the visitor encounters a boolean value.
Parameters:
context - the xml parsing context.
value - the boolean value.

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.9.0)

E52944-01


Copyright © 1997, 2015, Oracle. All rights reserved.