summaryrefslogtreecommitdiff
path: root/odk/examples/java/Inspector
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/java/Inspector')
-rw-r--r--odk/examples/java/Inspector/Inspector.java8
-rw-r--r--odk/examples/java/Inspector/InspectorAddon.java8
-rw-r--r--[-rwxr-xr-x]odk/examples/java/Inspector/InspectorPane.java8
-rw-r--r--odk/examples/java/Inspector/InstanceInspector.idl8
-rw-r--r--[-rwxr-xr-x]odk/examples/java/Inspector/Introspector.java8
-rw-r--r--odk/examples/java/Inspector/Makefile8
-rw-r--r--odk/examples/java/Inspector/MethodParametersDialog.java8
-rw-r--r--[-rwxr-xr-x]odk/examples/java/Inspector/ProtocolHandlerAddon.java8
-rw-r--r--odk/examples/java/Inspector/SourceCodeGenerator.java8
-rw-r--r--odk/examples/java/Inspector/SwingDialogProvider.java8
-rw-r--r--odk/examples/java/Inspector/SwingTreeControlProvider.java8
-rw-r--r--odk/examples/java/Inspector/SwingUnoFacetteNode.java8
-rw-r--r--odk/examples/java/Inspector/SwingUnoMethodNode.java8
-rw-r--r--odk/examples/java/Inspector/SwingUnoNode.java8
-rw-r--r--odk/examples/java/Inspector/SwingUnoPropertyNode.java8
-rw-r--r--odk/examples/java/Inspector/TDocSupplier.java8
-rw-r--r--odk/examples/java/Inspector/TestInspector.java8
-rw-r--r--odk/examples/java/Inspector/UnoFacetteNode.java8
-rw-r--r--odk/examples/java/Inspector/UnoMethodNode.java8
-rw-r--r--odk/examples/java/Inspector/UnoNode.java8
-rw-r--r--odk/examples/java/Inspector/UnoPropertyNode.java8
-rw-r--r--[-rwxr-xr-x]odk/examples/java/Inspector/UnoTreeRenderer.java8
-rw-r--r--odk/examples/java/Inspector/XDialogProvider.java8
-rw-r--r--odk/examples/java/Inspector/XInstanceInspector.idl8
-rw-r--r--odk/examples/java/Inspector/XLanguageSourceCodeGenerator.java8
-rw-r--r--odk/examples/java/Inspector/XMethodParametersDialog.java8
-rw-r--r--odk/examples/java/Inspector/XTreeControlProvider.java8
-rw-r--r--odk/examples/java/Inspector/XUnoFacetteNode.java8
-rw-r--r--odk/examples/java/Inspector/XUnoMethodNode.java8
-rw-r--r--odk/examples/java/Inspector/XUnoNode.java8
-rw-r--r--odk/examples/java/Inspector/XUnoPropertyNode.java8
31 files changed, 31 insertions, 217 deletions
diff --git a/odk/examples/java/Inspector/Inspector.java b/odk/examples/java/Inspector/Inspector.java
index df24bc7c25f8..c8887d4c0344 100644
--- a/odk/examples/java/Inspector/Inspector.java
+++ b/odk/examples/java/Inspector/Inspector.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: Inspector.java,v $
- *
- * $Revision: 1.5 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:18:05 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/InspectorAddon.java b/odk/examples/java/Inspector/InspectorAddon.java
index 8028a0d0f04f..be35f8a1988e 100644
--- a/odk/examples/java/Inspector/InspectorAddon.java
+++ b/odk/examples/java/Inspector/InspectorAddon.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: InspectorAddon.java,v $
- *
- * $Revision: 1.3 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:18:17 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/InspectorPane.java b/odk/examples/java/Inspector/InspectorPane.java
index b6327dc267e4..4748c1a62f77 100755..100644
--- a/odk/examples/java/Inspector/InspectorPane.java
+++ b/odk/examples/java/Inspector/InspectorPane.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: InspectorPane.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:18:30 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/InstanceInspector.idl b/odk/examples/java/Inspector/InstanceInspector.idl
index 08e59814d87c..79e43cb181e4 100644
--- a/odk/examples/java/Inspector/InstanceInspector.idl
+++ b/odk/examples/java/Inspector/InstanceInspector.idl
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: InstanceInspector.idl,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2008-07-11 14:29:35 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/Introspector.java b/odk/examples/java/Inspector/Introspector.java
index 4e1f33d1df7b..f4078931e1ed 100755..100644
--- a/odk/examples/java/Inspector/Introspector.java
+++ b/odk/examples/java/Inspector/Introspector.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: Introspector.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:19:10 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/Makefile b/odk/examples/java/Inspector/Makefile
index d1a3b41a4e3f..2b0c1b376c48 100644
--- a/odk/examples/java/Inspector/Makefile
+++ b/odk/examples/java/Inspector/Makefile
@@ -1,15 +1,9 @@
#*************************************************************************
#
-# $RCSfile: Makefile,v $
-#
-# $Revision: 1.23 $
-#
-# last change: $Author: rt $ $Date: 2008-07-11 14:29:48 $
-#
# The Contents of this file are made available subject to the terms of
# the BSD license.
#
-# Copyright (c) 2003 by Sun Microsystems, Inc.
+# Copyright 2000, 2010 Oracle and/or its affiliates.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/MethodParametersDialog.java b/odk/examples/java/Inspector/MethodParametersDialog.java
index 99485b10a379..a2ebf7e66c41 100644
--- a/odk/examples/java/Inspector/MethodParametersDialog.java
+++ b/odk/examples/java/Inspector/MethodParametersDialog.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: MethodParametersDialog.java,v $
- *
- * $Revision: 1.5 $
- *
- * last change: $Author: hr $ $Date: 2007-07-31 13:57:21 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/ProtocolHandlerAddon.java b/odk/examples/java/Inspector/ProtocolHandlerAddon.java
index 9e38d179e194..ad3b0efe8747 100755..100644
--- a/odk/examples/java/Inspector/ProtocolHandlerAddon.java
+++ b/odk/examples/java/Inspector/ProtocolHandlerAddon.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: ProtocolHandlerAddon.java,v $
- *
- * $Revision: 1.2 $
- *
- * last change: $Author: hr $ $Date: 2007-01-02 15:00:09 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/SourceCodeGenerator.java b/odk/examples/java/Inspector/SourceCodeGenerator.java
index 9fcf33cb6458..6661fe9604ad 100644
--- a/odk/examples/java/Inspector/SourceCodeGenerator.java
+++ b/odk/examples/java/Inspector/SourceCodeGenerator.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SourceCodeGenerator.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:20:37 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/SwingDialogProvider.java b/odk/examples/java/Inspector/SwingDialogProvider.java
index 44bf6df57d8b..59a35726e11e 100644
--- a/odk/examples/java/Inspector/SwingDialogProvider.java
+++ b/odk/examples/java/Inspector/SwingDialogProvider.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SwingDialogProvider.java,v $
- *
- * $Revision: 1.5 $
- *
- * last change: $Author: hr $ $Date: 2007-07-31 13:57:37 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/SwingTreeControlProvider.java b/odk/examples/java/Inspector/SwingTreeControlProvider.java
index 4d6d7ef76926..2405e8bc36ce 100644
--- a/odk/examples/java/Inspector/SwingTreeControlProvider.java
+++ b/odk/examples/java/Inspector/SwingTreeControlProvider.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SwingTreeControlProvider.java,v $
- *
- * $Revision: 1.5 $
- *
- * last change: $Author: rt $ $Date: 2007-11-06 15:08:01 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/SwingUnoFacetteNode.java b/odk/examples/java/Inspector/SwingUnoFacetteNode.java
index cd879de44ade..96374f1e5b9e 100644
--- a/odk/examples/java/Inspector/SwingUnoFacetteNode.java
+++ b/odk/examples/java/Inspector/SwingUnoFacetteNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SwingUnoFacetteNode.java,v $
- *
- * $Revision: 1.2 $
- *
- * last change: $Author: rt $ $Date: 2007-01-30 08:13:23 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/SwingUnoMethodNode.java b/odk/examples/java/Inspector/SwingUnoMethodNode.java
index 148db17ca02b..c01c6074b795 100644
--- a/odk/examples/java/Inspector/SwingUnoMethodNode.java
+++ b/odk/examples/java/Inspector/SwingUnoMethodNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SwingUnoMethodNode.java,v $
- *
- * $Revision: 1.3 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:21:25 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/SwingUnoNode.java b/odk/examples/java/Inspector/SwingUnoNode.java
index 93f8a33fd26f..19295cc4b4d0 100644
--- a/odk/examples/java/Inspector/SwingUnoNode.java
+++ b/odk/examples/java/Inspector/SwingUnoNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SwingUnoNode.java,v $
- *
- * $Revision: 1.3 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:21:53 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/SwingUnoPropertyNode.java b/odk/examples/java/Inspector/SwingUnoPropertyNode.java
index 5475c3ac2135..f72229db6f10 100644
--- a/odk/examples/java/Inspector/SwingUnoPropertyNode.java
+++ b/odk/examples/java/Inspector/SwingUnoPropertyNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: SwingUnoPropertyNode.java,v $
- *
- * $Revision: 1.3 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:22:07 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/TDocSupplier.java b/odk/examples/java/Inspector/TDocSupplier.java
index 53509973d7f7..1022507eb387 100644
--- a/odk/examples/java/Inspector/TDocSupplier.java
+++ b/odk/examples/java/Inspector/TDocSupplier.java
@@ -1,16 +1,10 @@
/*************************************************************************
*
- * $RCSfile: TDocSupplier.java,v $
- *
- * $Revision: 1.2 $
- *
- * last change: $Author: hr $ $Date: 2007-01-02 15:01:09 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/TestInspector.java b/odk/examples/java/Inspector/TestInspector.java
index e5dcef8f5645..a2255dff859a 100644
--- a/odk/examples/java/Inspector/TestInspector.java
+++ b/odk/examples/java/Inspector/TestInspector.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: TestInspector.java,v $
- *
- * $Revision: 1.3 $
- *
- * last change: $Author: hr $ $Date: 2007-01-02 15:01:35 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/UnoFacetteNode.java b/odk/examples/java/Inspector/UnoFacetteNode.java
index ca3a84c24d09..53296129b2da 100644
--- a/odk/examples/java/Inspector/UnoFacetteNode.java
+++ b/odk/examples/java/Inspector/UnoFacetteNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: UnoFacetteNode.java,v $
- *
- * $Revision: 1.2 $
- *
- * last change: $Author: hr $ $Date: 2007-01-02 15:01:45 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/UnoMethodNode.java b/odk/examples/java/Inspector/UnoMethodNode.java
index 8cc1b0443479..57793809bc5e 100644
--- a/odk/examples/java/Inspector/UnoMethodNode.java
+++ b/odk/examples/java/Inspector/UnoMethodNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: UnoMethodNode.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:22:53 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/UnoNode.java b/odk/examples/java/Inspector/UnoNode.java
index 98f1eb3ab6b6..2bfaaf34a356 100644
--- a/odk/examples/java/Inspector/UnoNode.java
+++ b/odk/examples/java/Inspector/UnoNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: UnoNode.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:23:07 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/UnoPropertyNode.java b/odk/examples/java/Inspector/UnoPropertyNode.java
index bfae4a7ca1f9..4b22b01f1b8a 100644
--- a/odk/examples/java/Inspector/UnoPropertyNode.java
+++ b/odk/examples/java/Inspector/UnoPropertyNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: UnoPropertyNode.java,v $
- *
- * $Revision: 1.3 $
- *
- * last change: $Author: rt $ $Date: 2007-01-30 08:15:04 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/UnoTreeRenderer.java b/odk/examples/java/Inspector/UnoTreeRenderer.java
index 5d4181281502..54094275606c 100755..100644
--- a/odk/examples/java/Inspector/UnoTreeRenderer.java
+++ b/odk/examples/java/Inspector/UnoTreeRenderer.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: UnoTreeRenderer.java,v $
- *
- * $Revision: 1.6 $
- *
- * last change: $Author: rt $ $Date: 2007-11-06 15:08:15 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/XDialogProvider.java b/odk/examples/java/Inspector/XDialogProvider.java
index a0fa4fc28ada..e8bfadc1873f 100644
--- a/odk/examples/java/Inspector/XDialogProvider.java
+++ b/odk/examples/java/Inspector/XDialogProvider.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: XDialogProvider.java,v $
- *
- * $Revision: 1.3 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:23:42 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/XInstanceInspector.idl b/odk/examples/java/Inspector/XInstanceInspector.idl
index 07d63895c718..134879f68cee 100644
--- a/odk/examples/java/Inspector/XInstanceInspector.idl
+++ b/odk/examples/java/Inspector/XInstanceInspector.idl
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: XInstanceInspector.idl,v $
- *
- * $Revision: 1.6 $
- *
- * last change: $Author: rt $ $Date: 2008-07-11 14:30:03 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/XLanguageSourceCodeGenerator.java b/odk/examples/java/Inspector/XLanguageSourceCodeGenerator.java
index 484d84f5c4a5..832f0aa51d4b 100644
--- a/odk/examples/java/Inspector/XLanguageSourceCodeGenerator.java
+++ b/odk/examples/java/Inspector/XLanguageSourceCodeGenerator.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: XLanguageSourceCodeGenerator.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:24:08 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/XMethodParametersDialog.java b/odk/examples/java/Inspector/XMethodParametersDialog.java
index fddb5429ee13..8bad4f19b9c5 100644
--- a/odk/examples/java/Inspector/XMethodParametersDialog.java
+++ b/odk/examples/java/Inspector/XMethodParametersDialog.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: XMethodParametersDialog.java,v $
- *
- * $Revision: 1.2 $
- *
- * last change: $Author: rt $ $Date: 2007-01-30 08:16:07 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/XTreeControlProvider.java b/odk/examples/java/Inspector/XTreeControlProvider.java
index 0065e8729ae6..ca40d70afae2 100644
--- a/odk/examples/java/Inspector/XTreeControlProvider.java
+++ b/odk/examples/java/Inspector/XTreeControlProvider.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: XTreeControlProvider.java,v $
- *
- * $Revision: 1.3 $
- *
- * last change: $Author: rt $ $Date: 2007-01-30 08:16:18 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/XUnoFacetteNode.java b/odk/examples/java/Inspector/XUnoFacetteNode.java
index 36ed5f017aad..6ef4bf4d67a9 100644
--- a/odk/examples/java/Inspector/XUnoFacetteNode.java
+++ b/odk/examples/java/Inspector/XUnoFacetteNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: XUnoFacetteNode.java,v $
- *
- * $Revision: 1.2 $
- *
- * last change: $Author: rt $ $Date: 2007-01-30 08:16:38 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/XUnoMethodNode.java b/odk/examples/java/Inspector/XUnoMethodNode.java
index a57003d75a57..074c2fe913ba 100644
--- a/odk/examples/java/Inspector/XUnoMethodNode.java
+++ b/odk/examples/java/Inspector/XUnoMethodNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: XUnoMethodNode.java,v $
- *
- * $Revision: 1.3 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:24:48 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/XUnoNode.java b/odk/examples/java/Inspector/XUnoNode.java
index 50aea088ae15..ae65374aca7a 100644
--- a/odk/examples/java/Inspector/XUnoNode.java
+++ b/odk/examples/java/Inspector/XUnoNode.java
@@ -1,16 +1,10 @@
import com.sun.star.uno.Type;
/*************************************************************************
*
- * $RCSfile: XUnoNode.java,v $
- *
- * $Revision: 1.3 $
- *
- * last change: $Author: rt $ $Date: 2007-04-04 09:25:00 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
diff --git a/odk/examples/java/Inspector/XUnoPropertyNode.java b/odk/examples/java/Inspector/XUnoPropertyNode.java
index 4265e994d724..e4aa4caba668 100644
--- a/odk/examples/java/Inspector/XUnoPropertyNode.java
+++ b/odk/examples/java/Inspector/XUnoPropertyNode.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: XUnoPropertyNode.java,v $
- *
- * $Revision: 1.2 $
- *
- * last change: $Author: rt $ $Date: 2007-01-30 08:17:06 $
- *
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
- * Copyright (c) 2003 by Sun Microsystems, Inc.
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without