summaryrefslogtreecommitdiff
path: root/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment
diff options
context:
space:
mode:
Diffstat (limited to 'odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment')
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/JavaWindowPeerFake.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/Makefile8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.h8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/Makefile8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c8
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.h8
21 files changed, 21 insertions, 147 deletions
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
index 1ba840286b95..0a53b9a1e0b9 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/CustomizeView.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: CustomizeView.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:37: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/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java
index 42f47be0c1cd..8f635dfdcf6e 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Desk.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: Desk.java,v $
- *
- * $Revision: 1.5 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:37: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/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
index e0c7b2578898..a45294c5affe 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: DocumentView.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:37:50 $
- *
* 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/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
index 6f0454c79fba..75af2ab7f35d 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/FunctionHelper.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: FunctionHelper.java,v $
- *
- * $Revision: 1.5 $
- *
- * last change: $Author: kz $ $Date: 2005-03-01 12:09: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/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
index d3fce206b3bb..935f788b8c03 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IOnewayLink.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: IOnewayLink.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:38:16 $
- *
* 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/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java
index 71bd0b4b3cff..ba9035383d24 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/IShutdownListener.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: IShutdownListener.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:38:31 $
- *
* 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/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
index 5865c65c2463..da1b68bc059d 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Interceptor.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: Interceptor.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:38:44 $
- *
* 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/DevelopersGuide/OfficeDev/DesktopEnvironment/JavaWindowPeerFake.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/JavaWindowPeerFake.java
index bbaa451f3d67..24cd05e2f526 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/JavaWindowPeerFake.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/JavaWindowPeerFake.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: JavaWindowPeerFake.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:38:57 $
- *
* 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/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile
index 5faa381b140a..bbabb215d48a 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/Makefile
@@ -1,15 +1,9 @@
#*************************************************************************
#
-# $RCSfile: Makefile,v $
-#
-# $Revision: 1.6 $
-#
-# last change: $Author: rt $ $Date: 2005-03-29 12:11:20 $
-#
# 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/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
index b9853f9037d5..ead6d7745287 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/NativeView.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: NativeView.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:39: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/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
index 76007310dc89..e1a8b3f9f35b 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: OfficeConnect.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:39: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/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
index 7bef81f5f7fd..7d84d7c5fcca 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OnewayExecutor.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: OnewayExecutor.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:39:52 $
- *
* 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/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
index bf43756226e5..de369dcd8c16 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusListener.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: StatusListener.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:40: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/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
index 01b1dcbebeae..64923f539516 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: StatusView.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:40:19 $
- *
* 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/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
index a2ff9886516d..e35e3c0d7b99 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/ViewContainer.java
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: ViewContainer.java,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:40:33 $
- *
* 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/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/Makefile b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/Makefile
index 09726249c34b..d6778b59be70 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/Makefile
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/Makefile
@@ -1,15 +1,9 @@
#*************************************************************************
#
-# $RCSfile: Makefile,v $
-#
-# $Revision: 1.5 $
-#
-# last change: $Author: rt $ $Date: 2005-01-31 16:40:47 $
-#
# 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/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c
index ba06d3fb2231..58bec5f9d088 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.c
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: nativeview.c,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:41:12 $
- *
* 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/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.h b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.h
index 9cd5f2e7d69b..371b685bd1cf 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.h
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/unix/nativeview.h
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: nativeview.h,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:41:26 $
- *
* 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/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/Makefile b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/Makefile
index 8b5c2a9ed67f..71c50df5ea2e 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/Makefile
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/Makefile
@@ -1,15 +1,9 @@
#*************************************************************************
#
-# $RCSfile: Makefile,v $
-#
-# $Revision: 1.4 $
-#
-# last change: $Author: rt $ $Date: 2004-05-18 13:25:26 $
-#
# 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/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c
index dafce5419b47..61b79b88cf39 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.c
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: nativeview.c,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:42: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/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.h b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.h
index 1da98ba3158e..371b685bd1cf 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.h
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/nativelib/windows/nativeview.h
@@ -1,15 +1,9 @@
/*************************************************************************
*
- * $RCSfile: nativeview.h,v $
- *
- * $Revision: 1.4 $
- *
- * last change: $Author: rt $ $Date: 2005-01-31 16:42:16 $
- *
* 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