summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/Config/ConfigExamples.java
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/Config/ConfigExamples.java')
-rw-r--r--odk/examples/DevelopersGuide/Config/ConfigExamples.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/odk/examples/DevelopersGuide/Config/ConfigExamples.java b/odk/examples/DevelopersGuide/Config/ConfigExamples.java
index 5f786fe165f4..2cca38513f99 100644
--- a/odk/examples/DevelopersGuide/Config/ConfigExamples.java
+++ b/odk/examples/DevelopersGuide/Config/ConfigExamples.java
@@ -435,12 +435,12 @@ public class ConfigExamples
// BROWSE example
/// Interface to procees information when browsing the configuration tree
- public static interface IConfigurationProcessor
+ public interface IConfigurationProcessor
{
/// process a value item
- public abstract void processValueElement( String sPath_, Object aValue_ );
+ void processValueElement( String sPath_, Object aValue_ );
/// process a structural item
- public abstract void processStructuralElement( String sPath_, XInterface xElement_);
+ void processStructuralElement( String sPath_, XInterface xElement_);
}
/// Internal method to recursively browse a structural element in preorder