summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
Diffstat (limited to 'odk')
-rw-r--r--odk/examples/DevelopersGuide/Config/ConfigExamples.java6
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java2
3 files changed, 5 insertions, 5 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
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
index 1ad68bb82f4b..ff4bfe4cc65e 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
@@ -64,5 +64,5 @@ public interface IOnewayLink
* Note: Atomic types (e.g. int, long) will be transported as objects
* too (Integer, Long)!
*/
- public abstract void execOneway( int nRequest, ArrayList<Object> lParams );
+ void execOneway( int nRequest, ArrayList<Object> lParams );
}
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java
index de9ac9fa43f2..bd7f3af0de94 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java
@@ -41,5 +41,5 @@
*/
public interface IShutdownListener
{
- public abstract void shutdown();
+ void shutdown();
}