33 | *
34 | */
35 | public class WindowsSeparatorUI extends BasicSeparatorUI { }
36 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/SpinnerUI.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package javax.swing.plaf;
27 |
28 |
29 | /**
30 | * Pluggable look and feel interface for JSpinner
31 | *
32 | * @author Hans Muller
33 | * @since 1.4
34 | */
35 | public abstract class SpinnerUI extends javax.swing.plaf.ComponentUI {
36 | }
37 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableInterceptor/DISCARDING.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableInterceptor;
2 |
3 |
4 | /**
5 | * org/omg/PortableInterceptor/DISCARDING.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public interface DISCARDING
12 | {
13 |
14 | /** Object adapter state that causes all requests to be discarded.
15 | */
16 | public static final short value = (short)(2);
17 | }
18 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/ID_ASSIGNMENT_POLICY_ID.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/ID_ASSIGNMENT_POLICY_ID.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public interface ID_ASSIGNMENT_POLICY_ID
12 | {
13 |
14 | /**
15 | * The value representing ID_ASSIGNMENT_POLICY_ID.
16 | */
17 | public static final int value = (int)(19L);
18 | }
19 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/ID_UNIQUENESS_POLICY_ID.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/ID_UNIQUENESS_POLICY_ID.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public interface ID_UNIQUENESS_POLICY_ID
12 | {
13 |
14 | /**
15 | * The value representing ID_UNIQUENESS_POLICY_ID.
16 | */
17 | public static final int value = (int)(18L);
18 | }
19 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/PortableActivationIDL/Repository.java:
--------------------------------------------------------------------------------
1 | package com.sun.corba.se.PortableActivationIDL;
2 |
3 |
4 | /**
5 | * com/sun/corba/se/PortableActivationIDL/Repository.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public interface Repository extends RepositoryOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity
12 | {
13 | } // interface Repository
14 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/util/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | /**
27 | * Provides utilities for operations on abstract syntax trees (AST).
28 | *
29 | * @author Peter von der Ahé
30 | * @author Jonathan Gibbons
31 | * @since 1.6
32 | */
33 | @jdk.Exported
34 | package com.sun.source.util;
35 |
--------------------------------------------------------------------------------
/JVM-Learning/src/com/VolatileDemo.java:
--------------------------------------------------------------------------------
1 | package com;
2 |
3 | /**
4 | * @Author: clf
5 | * @Date: 19-11-8
6 | * @Description:
7 | */
8 | public class VolatileDemo {
9 |
10 | private int a;
11 | private volatile boolean flag;
12 |
13 | public void write() {
14 | a = 1;// 1
15 | flag = true;//2 当写一个volatile变量时,Java内存模型会把该线程对应的本地内存中的共享变量刷新到主内存中
16 | }
17 |
18 | public void reader() {
19 | if (flag) {//3 当读一个volatile变量时,Java内存模型会把当前线程对应的本地内存中的共享变量置为无效,然后从主内存中读取变量
20 | int b = a + 1;//4
21 | System.out.println(b);//5
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/pept/transport/ReaderThread.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.pept.transport;
27 |
28 | /**
29 | * @author Harold Carr
30 | */
31 | public interface ReaderThread {
32 | public Connection getConnection();
33 | public void close();
34 | }
35 |
36 | // End of file.
37 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/SeparatorUI.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 1998, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package javax.swing.plaf;
27 |
28 | /**
29 | * Pluggable look and feel interface for JSeparator.
30 | *
31 | * @author Georges Saab
32 | * @author David Karlton
33 | */
34 |
35 | public abstract class SeparatorUI extends ComponentUI {
36 | }
37 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableInterceptor/NON_EXISTENT.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableInterceptor;
2 |
3 |
4 | /**
5 | * org/omg/PortableInterceptor/NON_EXISTENT.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public interface NON_EXISTENT
12 | {
13 |
14 | /** Object adapter state indicating that the adapter has been destroyed.
15 | */
16 | public static final short value = (short)(4);
17 | }
18 |
--------------------------------------------------------------------------------
/Test/src/main/java/ArraycopyAndCopyOf/ArrayscopyOfTest.java:
--------------------------------------------------------------------------------
1 | package ArraycopyAndCopyOf;
2 |
3 | import java.util.Arrays;
4 |
5 | /**
6 | * @Author: clf
7 | * @Date: 18-12-10
8 | * @Description:
9 | */
10 | public class ArrayscopyOfTest {
11 | public static void main(String[] args) {
12 | int[] a = new int[3];
13 | a[0] = 0;
14 | a[1] = 1;
15 | a[2] = 2;
16 | int[] b = Arrays.copyOf(a, 10);
17 | System.out.println("b.length"+b.length);
18 | for (int i = 0; i < b.length; i++) {
19 | System.out.println(i + " : " + b[i]);
20 | }
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/impl/orbutil/graph/Graph.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.impl.orbutil.graph ;
27 |
28 | import java.util.Set ;
29 |
30 | public interface Graph extends Set // Set
32 | * {@docroot}
33 | *
34 | * @since 1.8
35 | */
36 | @jdk.Exported
37 | public interface DocRootTree extends InlineTagTree { }
38 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableInterceptor/HOLDING.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableInterceptor;
2 |
3 |
4 | /**
5 | * org/omg/PortableInterceptor/HOLDING.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public interface HOLDING
12 | {
13 |
14 | /** Object adapter state that holds requests temporarily until the
15 | * state is changed.
16 | */
17 | public static final short value = (short)(0);
18 | }
19 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/REQUEST_PROCESSING_POLICY_ID.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/REQUEST_PROCESSING_POLICY_ID.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public interface REQUEST_PROCESSING_POLICY_ID
12 | {
13 |
14 | /**
15 | * The value representing REQUEST_PROCESSING_POLICY_ID.
16 | */
17 | public static final int value = (int)(22L);
18 | }
19 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/SERVANT_RETENTION_POLICY_ID.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/SERVANT_RETENTION_POLICY_ID.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public interface SERVANT_RETENTION_POLICY_ID
12 | {
13 |
14 | /**
15 | * The value representing SERVANT_RETENTION_POLICY_ID.
16 | */
17 | public static final int value = (int)(21L);
18 | }
19 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/logging/LogWrapperFactory.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.logging ;
27 |
28 | import java.util.logging.Logger ;
29 |
30 | import com.sun.corba.se.spi.logging.LogWrapperBase ;
31 |
32 | public interface LogWrapperFactory {
33 | LogWrapperBase create( Logger logger ) ;
34 | }
35 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/oa/OADestroyed.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2002, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package com.sun.corba.se.spi.oa;
26 |
27 | /** This exception is thrown when an operation on an ObjectAdapter
28 | * fails because the ObjectAdapter was destroyed during the operation.
29 | */
30 | public class OADestroyed extends java.lang.Exception {
31 | }
32 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/tree/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | /**
27 | * Provides interfaces to represent source code as abstract syntax
28 | * trees (AST).
29 | *
30 | * @author Peter von der Ahé
31 | * @author Jonathan Gibbons
32 | * @since 1.6
33 | */
34 | @jdk.Exported
35 | package com.sun.source.tree;
36 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/lang/invoke/InvokeDynamic.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package java.lang.invoke;
27 |
28 | /**
29 | * This is a place-holder class. Some HotSpot implementations need to see it.
30 | */
31 | final class InvokeDynamic {
32 | private InvokeDynamic() { throw new InternalError(); } // do not instantiate
33 | }
34 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableInterceptor/IORInterceptor_3_0.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableInterceptor;
2 |
3 |
4 | /**
5 | * org/omg/PortableInterceptor/IORInterceptor_3_0.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public interface IORInterceptor_3_0 extends IORInterceptor_3_0Operations, org.omg.PortableInterceptor.IORInterceptor, org.omg.CORBA.portable.IDLEntity
12 | {
13 | } // interface IORInterceptor_3_0
14 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/IMPLICIT_ACTIVATION_POLICY_ID.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/IMPLICIT_ACTIVATION_POLICY_ID.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public interface IMPLICIT_ACTIVATION_POLICY_ID
12 | {
13 |
14 | /**
15 | * The value representing IMPLICIT_ACTIVATION_POLICY_ID.
16 | */
17 | public static final int value = (int)(20L);
18 | }
19 |
--------------------------------------------------------------------------------
/Test/src/JavaSE/lambda/SwingTest.java:
--------------------------------------------------------------------------------
1 | package lambda;
2 |
3 | import javax.swing.*;
4 |
5 | /**
6 | * @Author: clf
7 | * @Date: 19-11-9
8 | * @Description:
9 | */
10 | public class SwingTest {
11 | public static void main(String[] args) {
12 | JFrame jFrame = new JFrame("My JFrame");
13 | JButton jButton = new JButton("My JButton");
14 |
15 | jButton.addActionListener(actionEvent -> System.out.println("Button Pressed!"));
16 | jFrame.add(jButton);
17 | jFrame.pack();
18 | jFrame.setVisible(true);
19 | jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/legacy/connection/Connection.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.legacy.connection;
27 |
28 | /**
29 | * This interface represents the connection on which a request is made.
30 | */
31 |
32 | public interface Connection
33 | {
34 | public java.net.Socket getSocket();
35 | }
36 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/orbutil/fsm/ActionBase.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.orbutil.fsm ;
27 |
28 | import com.sun.corba.se.impl.orbutil.fsm.NameBase ;
29 |
30 | public abstract class ActionBase extends NameBase implements Action {
31 | public ActionBase( String name ) { super( name ) ; }
32 | }
33 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/orbutil/fsm/GuardBase.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.orbutil.fsm ;
27 |
28 | import com.sun.corba.se.impl.orbutil.fsm.NameBase ;
29 |
30 | public abstract class GuardBase extends NameBase implements Guard {
31 | public GuardBase( String name ) { super( name ) ; }
32 | }
33 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/IOP/TAG_POLICIES.java:
--------------------------------------------------------------------------------
1 | package org.omg.IOP;
2 |
3 |
4 | /**
5 | * org/omg/IOP/TAG_POLICIES.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/IOP.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public interface TAG_POLICIES
12 | {
13 |
14 | /**
15 | * A profile component containing the sequence of QoS policies exported
16 | * with the object reference by an object adapter.
17 | */
18 | public static final int value = (int)(2L);
19 | }
20 |
--------------------------------------------------------------------------------
/Test/src/main/java/Synchronized/Test2.txt:
--------------------------------------------------------------------------------
1 | Compiled from "Test2.java"
2 | public class Synchronized.Test2 {
3 | public Synchronized.Test2();
4 | Code:
5 | 0: aload_0
6 | 1: invokespecial #1 // Method java/lang/Object."
33 | * {@inheritDoc}
34 | *
35 | * @since 1.8
36 | */
37 | @jdk.Exported
38 | public interface InheritDocTree extends InlineTagTree { }
39 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/security/acl/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | /**
27 | * The classes and interfaces in this package have been
28 | * superseded by classes in the java.security package.
29 | * See that package and, for example, java.security.Permission for details.
30 | *
31 | * @since JDK1.1
32 | */
33 | package java.security.acl;
34 |
--------------------------------------------------------------------------------
/Test/src/JavaSE/lambda/Test2.java:
--------------------------------------------------------------------------------
1 | package lambda;
2 |
3 | /**
4 | * @Author: clf
5 | * @Date: 19-11-9
6 | * @Description:
7 | */
8 | public class Test2 {
9 |
10 | public void myTest(MyInterface myInterface) {
11 | System.out.println(1);
12 | myInterface.test();
13 | System.out.println(2);
14 | }
15 | public static void main(String[] args) {
16 | Test2 test2 = new Test2();
17 | test2.myTest(() -> System.out.println("My test"));
18 |
19 | System.out.println("============================");
20 |
21 | MyInterface myInterface = () -> System.out.println("Hello");
22 |
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/activation/Server.java:
--------------------------------------------------------------------------------
1 | package com.sun.corba.se.spi.activation;
2 |
3 |
4 | /**
5 | * com/sun/corba/se/spi/activation/Server.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/com/sun/corba/se/spi/activation/activation.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 |
12 | /** Server callback API, passed to Activator in active method.
13 | */
14 | public interface Server extends ServerOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity
15 | {
16 | } // interface Server
17 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/jmx/remote/internal/Unmarshal.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, 2008, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.jmx.remote.internal;
27 |
28 | import java.io.IOException;
29 | import java.rmi.MarshalledObject;
30 |
31 | public interface Unmarshal {
32 | public Object get(MarshalledObject> mo)
33 | throws IOException, ClassNotFoundException;
34 | }
35 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/ToolBarUI.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 1998, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package javax.swing.plaf;
27 |
28 | import java.awt.Insets;
29 | import javax.swing.JToolBar;
30 |
31 | /**
32 | * Pluggable look and feel interface for JToolBar.
33 | *
34 | * @author Georges Saab
35 | */
36 |
37 | public abstract class ToolBarUI extends ComponentUI {
38 | }
39 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/ior/iiop/JavaCodebaseComponent.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.ior.iiop;
27 |
28 | import com.sun.corba.se.spi.ior.TaggedComponent ;
29 |
30 | /**
31 | * @author Ken Cavanaugh
32 | */
33 | public interface JavaCodebaseComponent extends TaggedComponent
34 | {
35 | public String getURLs() ;
36 | }
37 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/transport/SocketOrChannelAcceptor.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.transport;
27 |
28 | import java.net.ServerSocket;
29 |
30 | /**
31 | * @author Harold Carr
32 | */
33 | public interface SocketOrChannelAcceptor
34 | {
35 | public ServerSocket getServerSocket();
36 | }
37 |
38 | // End of file.
39 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/BlockTagTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | /**
29 | * A tree node used as the base class for the different types of
30 | * block tags.
31 | *
32 | * @since 1.8
33 | */
34 | @jdk.Exported
35 | public interface BlockTagTree extends DocTree {
36 | String getTagName();
37 | }
38 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/CommentTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | /**
29 | * An embedded HTML comment.
30 | *
31 | *
32 | * {@literal }
33 | *
34 | * @since 1.8
35 | */
36 | @jdk.Exported
37 | public interface CommentTree extends DocTree {
38 | String getBody();
39 | }
40 |
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/lang/ref/FinalReference.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package java.lang.ref;
27 |
28 | /**
29 | * Final references, used to implement finalization
30 | */
31 | class FinalReference
32 | * { @value reference }
33 | *
34 | * @since 1.8
35 | */
36 | @jdk.Exported
37 | public interface ValueTree extends InlineTagTree {
38 | ReferenceTree getReference();
39 | }
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/xml/ws/handler/LogicalHandler.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package javax.xml.ws.handler;
27 |
28 | /** The
33 | * {@literal text}
34 | *
35 | * @since 1.8
36 | */
37 | @jdk.Exported
38 | public interface LiteralTree extends InlineTagTree {
39 | TextTree getBody();
40 | }
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/ReferenceTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | /**
29 | * A tree node to a reference to a Java language element.
30 | *
31 | *
32 | * package.class#field
33 | *
34 | * @since 1.8
35 | */
36 | @jdk.Exported
37 | public interface ReferenceTree extends DocTree {
38 | String getSignature();
39 | }
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/lang/invoke/DontInline.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package java.lang.invoke;
27 |
28 | import java.lang.annotation.*;
29 |
30 | /**
31 | * Internal marker for some methods in the JSR 292 implementation.
32 | */
33 | /*non-public*/
34 | @Target({ElementType.METHOD, ElementType.CONSTRUCTOR})
35 | @Retention(RetentionPolicy.RUNTIME)
36 | @interface DontInline {
37 | }
38 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/lang/invoke/ForceInline.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package java.lang.invoke;
27 |
28 | import java.lang.annotation.*;
29 |
30 | /**
31 | * Internal marker for some methods in the JSR 292 implementation.
32 | */
33 | /*non-public*/
34 | @Target({ElementType.METHOD, ElementType.CONSTRUCTOR})
35 | @Retention(RetentionPolicy.RUNTIME)
36 | @interface ForceInline {
37 | }
38 |
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
35 | * & name ;
36 | *
37 | * @since 1.8
38 | */
39 | @jdk.Exported
40 | public interface EntityTree extends DocTree {
41 | Name getName();
42 | }
43 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/nio/file/attribute/FileStoreAttributeView.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package java.nio.file.attribute;
27 |
28 | /**
29 | * An attribute view that is a read-only or updatable view of the attributes of
30 | * a {@link java.nio.file.FileStore}.
31 | *
32 | * @since 1.7
33 | */
34 |
35 | public interface FileStoreAttributeView
36 | extends AttributeView
37 | {
38 | }
39 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/MenuItemUI.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 1998, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package javax.swing.plaf;
26 |
27 | import javax.swing.*;
28 | import java.awt.event.*;
29 |
30 | /**
31 | * Pluggable look and feel interface for JMenuItem.
32 | *
33 | * @author Georges Saab
34 | * @author David Karlton
35 | * @author Arnaud Weber
36 | */
37 | public abstract class MenuItemUI extends ButtonUI {
38 | }
39 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/Messaging/SYNC_WITH_TRANSPORT.java:
--------------------------------------------------------------------------------
1 | package org.omg.Messaging;
2 |
3 |
4 | /**
5 | * org/omg/Messaging/SYNC_WITH_TRANSPORT.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/Messaging.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public interface SYNC_WITH_TRANSPORT
12 | {
13 |
14 | /**
15 | * Constant, defined in the Messaging spec, to define how far the
16 | * request shall progress before control is returned to the client.
17 | */
18 | public static final short value = (short)(1);
19 | }
20 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/PortableActivationIDL/ORBProxy.java:
--------------------------------------------------------------------------------
1 | package com.sun.corba.se.PortableActivationIDL;
2 |
3 |
4 | /**
5 | * com/sun/corba/se/PortableActivationIDL/ORBProxy.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 |
12 | /** ORB callback interface, passed to Activator in registerORB method.
13 | */
14 | public interface ORBProxy extends ORBProxyOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity
15 | {
16 | } // interface ORBProxy
17 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/internal/corba/ORBSingleton.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.internal.corba;
27 |
28 | /**
29 | *
30 | * Deprecated class for backward compatibility.
31 | */
32 | public class ORBSingleton extends com.sun.corba.se.impl.orb.ORBSingleton
33 | {
34 | public ORBSingleton()
35 | {
36 | super();
37 | }
38 | }
39 |
40 | // End of file.
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/legacy/interceptor/UnknownType.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.legacy.interceptor;
27 |
28 | public class UnknownType
29 | extends
30 | Exception
31 | {
32 | public UnknownType()
33 | {
34 | super();
35 | }
36 |
37 | public UnknownType(String msg)
38 | {
39 | super(msg);
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/IdentifierTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | import javax.lang.model.element.Name;
29 |
30 | /**
31 | * An identifier in a documentation comment.
32 | *
33 | *
34 | * name
35 | *
36 | * @since 1.8
37 | */
38 | @jdk.Exported
39 | public interface IdentifierTree extends DocTree {
40 | Name getName();
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/copyobject/ObjectCopierFactory.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.copyobject ;
27 |
28 | import com.sun.corba.se.spi.orb.ORB ;
29 |
30 | /** ObjectCopier factory interface used for registration.
31 | */
32 | public interface ObjectCopierFactory {
33 | /** Create a new instance of an ObjectCopier.
34 | */
35 | ObjectCopier make() ;
36 | }
37 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/imageio/plugins/common/I18N.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.imageio.plugins.common;
27 |
28 | public final class I18N extends I18NImpl {
29 | private final static String resource_name = "iio-plugin.properties";
30 | public static String getString(String key) {
31 | return getString("com.sun.imageio.plugins.common.I18N", resource_name, key);
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/awt/Conditional.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1998, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package java.awt;
27 |
28 | /**
29 | * Conditional is used by the EventDispatchThread's message pumps to
30 | * determine if a given pump should continue to run, or should instead exit
31 | * and yield control to the parent pump.
32 | *
33 | * @author David Mendenhall
34 | */
35 | interface Conditional {
36 | boolean evaluate();
37 | }
38 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/internal/Interceptors/PIORB.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package com.sun.corba.se.internal.Interceptors;
26 |
27 | import com.sun.corba.se.internal.POA.POAORB;
28 |
29 | /**
30 | * Deprecated class for backward compatibility.
31 | */
32 | public class PIORB
33 | extends POAORB
34 | {
35 | public PIORB() {
36 | super();
37 | }
38 | }
39 |
40 | // End of file.
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/jmx/snmp/internal/SnmpModelLcd.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2001, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.jmx.snmp.internal;
27 |
28 | /**
29 | * An interface to implement when developping customized model configuration datastore.
30 | * This API is a Sun Microsystems internal API and is subject
31 | * to change without notice.
34 | * @author name-text.
35 | *
36 | * @since 1.8
37 | */
38 | @jdk.Exported
39 | public interface AuthorTree extends BlockTagTree {
40 | List extends DocTree> getName();
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/EndElementTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | import javax.lang.model.element.Name;
29 |
30 | /**
31 | * A tree node for the end of an HTML element.
32 | *
33 | *
34 | * </ name >
35 | *
36 | * @since 1.8
37 | */
38 | @jdk.Exported
39 | public interface EndElementTree extends DocTree {
40 | Name getName();
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/SinceTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | import java.util.List;
29 |
30 | /**
31 | * A tree node for an @since block tag.
32 | *
33 | *
34 | * @since since-text
35 | *
36 | * @since 1.8
37 | */
38 | @jdk.Exported
39 | public interface SinceTree extends BlockTagTree {
40 | List extends DocTree> getBody();
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/CORBA/BAD_POLICY.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package org.omg.CORBA;
27 | /**
28 | * A PolicyErrorCode which would be filled in
29 | * the PolicyError exception.
30 | *
31 | * @author rip-dev
32 | */
33 |
34 | public interface BAD_POLICY {
35 | /**
36 | * The Error code in PolicyError exception.
37 | */
38 | final short value = (short) (0L);
39 | };
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/ThreadPolicy.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/ThreadPolicy.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * The ThreadPolicy specifies the threading model
14 | * used with the created POA. The default is
15 | * ORB_CTRL_MODEL.
16 | */
17 | public interface ThreadPolicy extends ThreadPolicyOperations, org.omg.CORBA.Policy, org.omg.CORBA.portable.IDLEntity
18 | {
19 | } // interface ThreadPolicy
20 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/PortableActivationIDL/ServerProxy.java:
--------------------------------------------------------------------------------
1 | package com.sun.corba.se.PortableActivationIDL;
2 |
3 |
4 | /**
5 | * com/sun/corba/se/PortableActivationIDL/ServerProxy.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 |
12 | /** Server callback interface, passed to Activator in registerServer method.
13 | */
14 | public interface ServerProxy extends ServerProxyOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity
15 | {
16 | } // interface ServerProxy
17 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/impl/corba/TypeCodeFactory.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1999, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.impl.corba;
27 |
28 | public interface TypeCodeFactory {
29 | void setTypeCode(String id, TypeCodeImpl code);
30 |
31 | TypeCodeImpl getTypeCode(String id);
32 |
33 | void setTypeCodeForClass( Class c, TypeCodeImpl tcimpl ) ;
34 |
35 | TypeCodeImpl getTypeCodeForClass( Class c ) ;
36 | }
37 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/ior/iiop/MaxStreamFormatVersionComponent.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package com.sun.corba.se.spi.ior.iiop;
26 |
27 | import com.sun.corba.se.spi.ior.TaggedComponent ;
28 |
29 | // Java to IDL ptc 02-01-12 1.4.11
30 | // TAG_RMI_CUSTOM_MAX_STREAM_FORMAT
31 | public interface MaxStreamFormatVersionComponent extends TaggedComponent
32 | {
33 | public byte getMaxStreamFormatVersion() ;
34 | }
35 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/orb/Operation.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2002, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package com.sun.corba.se.spi.orb ;
26 |
27 | /** A generic class representing a function that takes a value and returns
28 | * a value. This is a building block for property parsing.
29 | */
30 | public interface Operation{
31 | /** Apply some function to a value and return the result.
32 | */
33 | Object operate( Object value ) ;
34 | }
35 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/IOP/TransactionService.java:
--------------------------------------------------------------------------------
1 | package org.omg.IOP;
2 |
3 |
4 | /**
5 | * org/omg/IOP/TransactionService.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/IOP.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public interface TransactionService
12 | {
13 |
14 | /**
15 | * Identifies a CDR encapsulation of the
16 | *
34 | * @return description
35 | *
36 | * @since 1.8
37 | */
38 | @jdk.Exported
39 | public interface ReturnTree extends BlockTagTree {
40 | List extends DocTree> getDescription();
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/tree/ExpressionTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.tree;
27 |
28 | /**
29 | * A tree node used as the base class for the different types of
30 | * expressions.
31 | *
32 | * @jls chapter 15
33 | *
34 | * @author Peter von der Ahé
35 | * @author Jonathan Gibbons
36 | * @since 1.6
37 | */
38 | @jdk.Exported
39 | public interface ExpressionTree extends Tree {}
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/tree/StatementTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.tree;
27 |
28 | /**
29 | * A tree node used as the base class for the different kinds of
30 | * statements.
31 | *
32 | * @jls chapter 14
33 | *
34 | * @author Peter von der Ahé
35 | * @author Jonathan Gibbons
36 | * @since 1.6
37 | */
38 | @jdk.Exported
39 | public interface StatementTree extends Tree {}
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/lang/model/type/NullType.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package javax.lang.model.type;
27 |
28 |
29 | /**
30 | * Represents the null type.
31 | * This is the type of the expression {@code null},
32 | *
33 | * @author Joseph D. Darcy
34 | * @author Scott Seligman
35 | * @author Peter von der Ahé
36 | * @since 1.6
37 | */
38 |
39 | public interface NullType extends ReferenceType {
40 | }
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/CORBA/BAD_POLICY_TYPE.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1998, 2001, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package org.omg.CORBA;
27 |
28 | /**
29 | * A PolicyErrorCode which would be filled in
30 | * the PolicyError exception.
31 | *
32 | * @author rip-dev
33 | */
34 | public interface BAD_POLICY_TYPE {
35 | /**
36 | * The Error code in PolicyError exception.
37 | */
38 | final short value = (short) (2L);
39 | };
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/ServantActivator.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/ServantActivator.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * When the POA has the RETAIN policy it uses servant
14 | * managers that are ServantActivators.
15 | */
16 | public interface ServantActivator extends ServantActivatorOperations, org.omg.PortableServer.ServantManager, org.omg.CORBA.portable.IDLEntity
17 | {
18 | } // interface ServantActivator
19 |
--------------------------------------------------------------------------------
/Test/src/JavaSE/lambda/applycation/Person.java:
--------------------------------------------------------------------------------
1 | package lambda.applycation;
2 |
3 | /**
4 | * @Author: clf
5 | * @Date: 19-11-15
6 | * @Description:
7 | */
8 | public class Person {
9 | private String username;
10 | private int age;
11 |
12 | public Person(String username, int age) {
13 | this.username = username;
14 | this.age = age;
15 | }
16 |
17 | public int getAge() {
18 | return age;
19 | }
20 |
21 | public void setAge(int age) {
22 | this.age = age;
23 | }
24 |
25 | public String getUsername() {
26 | return username;
27 | }
28 |
29 | public void setUsername(String username) {
30 | this.username = username;
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/legacy/interceptor/IORInfoExt.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.legacy.interceptor;
27 |
28 | import com.sun.corba.se.spi.oa.ObjectAdapter;
29 |
30 | public interface IORInfoExt
31 | {
32 | public int getServerPort(String type)
33 | throws
34 | UnknownType;
35 |
36 | public ObjectAdapter getObjectAdapter();
37 | }
38 |
39 | // End of file.
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/VersionTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | import java.util.List;
29 |
30 | /**
31 | *
32 | * A tree node for an @version block tag.
33 | *
34 | *
35 | * @version version-text
36 | *
37 | * @since 1.8
38 | */
39 | @jdk.Exported
40 | public interface VersionTree extends BlockTagTree {
41 | List extends DocTree> getBody();
42 | }
43 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/nimbus/InnerGlowEffect.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package javax.swing.plaf.nimbus;
26 |
27 | import java.awt.Color;
28 |
29 | /**
30 | * InnerGlowEffect
31 | *
32 | * @author Created by Jasper Potts (Jun 21, 2007)
33 | */
34 | class InnerGlowEffect extends InnerShadowEffect {
35 | InnerGlowEffect() {
36 | distance = 0;
37 | color = new Color(255, 255, 211);
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/nimbus/OuterGlowEffect.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package javax.swing.plaf.nimbus;
26 |
27 | import java.awt.Color;
28 |
29 | /**
30 | * InnerGlowEffect
31 | *
32 | * @author Created by Jasper Potts (Jun 21, 2007)
33 | */
34 | class OuterGlowEffect extends DropShadowEffect {
35 | OuterGlowEffect() {
36 | distance = 0;
37 | color = new Color(255, 255, 211);
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/internal/iiop/ORB.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1995, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.internal.iiop;
27 |
28 | /**
29 | * Deprecated class for backward compatibility.
30 | */
31 | public class ORB extends /* 1.4 value: com.sun.corba.se.internal.corba.ORB */
32 | com.sun.corba.se.impl.orb.ORBImpl
33 | {
34 | public ORB()
35 | {
36 | super();
37 | }
38 | } // Class ORB
39 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/tree/IntersectionTypeTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.tree;
27 |
28 | import java.util.List;
29 |
30 | /**
31 | * A tree node for an intersection type in a cast expression.
32 | *
33 | * @author Maurizio Cimadamore
34 | *
35 | * @since 1.8
36 | */
37 | @jdk.Exported
38 | public interface IntersectionTypeTree extends Tree {
39 | List extends Tree> getBounds();
40 | }
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/LifespanPolicy.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/LifespanPolicy.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * The LifespanPolicy specifies the lifespan of the
14 | * objects implemented in the created POA. The default
15 | * is TRANSIENT.
16 | */
17 | public interface LifespanPolicy extends LifespanPolicyOperations, org.omg.CORBA.Policy, org.omg.CORBA.portable.IDLEntity
18 | {
19 | } // interface LifespanPolicy
20 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/pept/transport/ByteBufferPool.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.pept.transport;
27 |
28 | import java.nio.ByteBuffer;
29 |
30 | /**
31 | * @author Charlie Hunt
32 | */
33 | public interface ByteBufferPool
34 | {
35 | public ByteBuffer getByteBuffer(int theSize);
36 | public void releaseByteBuffer(ByteBuffer thebb);
37 | public int activeCount();
38 | }
39 |
40 | // End of file.
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/ior/iiop/AlternateIIOPAddressComponent.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.ior.iiop;
27 |
28 | import com.sun.corba.se.spi.ior.iiop.IIOPAddress ;
29 | import com.sun.corba.se.spi.ior.TaggedComponent ;
30 |
31 | /**
32 | * @author Ken Cavanaugh
33 | */
34 | public interface AlternateIIOPAddressComponent extends TaggedComponent
35 | {
36 | public IIOPAddress getAddress() ;
37 | }
38 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/DeprecatedTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | import java.util.List;
29 |
30 | /**
31 | * A tree node for an @deprecated block tag.
32 | *
33 | *
34 | * @deprecated deprecated text.
35 | *
36 | * @since 1.8
37 | */
38 | @jdk.Exported
39 | public interface DeprecatedTree extends BlockTagTree {
40 | List extends DocTree> getBody();
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/UnknownBlockTagTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package com.sun.source.doctree;
26 |
27 | import java.util.List;
28 |
29 | /**
30 | * A tree node for an unrecognized inline tag.
31 | *
32 | *
33 | * @name content
34 | *
35 | * @since 1.8
36 | *
37 | */
38 | @jdk.Exported
39 | public interface UnknownBlockTagTree extends BlockTagTree {
40 | List extends DocTree> getContent();
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/util/TaskListener.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.util;
27 |
28 |
29 | /**
30 | * Provides a listener to monitor the activity of the JDK Java Compiler, javac.
31 | *
32 | * @author Jonathan Gibbons
33 | * @since 1.6
34 | */
35 | @jdk.Exported
36 | public interface TaskListener
37 | {
38 | public void started(TaskEvent e);
39 |
40 | public void finished(TaskEvent e);
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/DynamicAny/DynStruct.java:
--------------------------------------------------------------------------------
1 | package org.omg.DynamicAny;
2 |
3 |
4 | /**
5 | * org/omg/DynamicAny/DynStruct.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/DynamicAny/DynamicAny.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * DynStruct objects support the manipulation of IDL struct and exception values.
14 | * Members of the exceptions are handled in the same way as members of a struct.
15 | */
16 | public interface DynStruct extends DynStructOperations, org.omg.DynamicAny.DynAny, org.omg.CORBA.portable.IDLEntity
17 | {
18 | } // interface DynStruct
19 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/impl/protocol/giopmsgheaders/CancelRequestMessage.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.impl.protocol.giopmsgheaders;
27 |
28 | /**
29 | * This interface captures the CancelRequestMessage contract.
30 | *
31 | * @author Ram Jeyaraman 05/14/2000
32 | */
33 |
34 | public interface CancelRequestMessage extends Message {
35 | int CANCEL_REQ_MSG_SIZE = 4;
36 | int getRequestId();
37 | }
38 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/ior/iiop/IIOPAddress.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.ior.iiop;
27 |
28 | import com.sun.corba.se.spi.ior.Writeable ;
29 |
30 | /** IIOPAddress represents the host and port used to establish a
31 | * TCP connection for an IIOP request.
32 | */
33 | public interface IIOPAddress extends Writeable
34 | {
35 | public String getHost() ;
36 |
37 | public int getPort() ;
38 | }
39 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/SerialDataTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | import java.util.List;
29 |
30 | /**
31 | * A tree node for an @serialData block tag.
32 | *
33 | *
34 | * @serialData data-description
35 | *
36 | * @since 1.8
37 | */
38 | @jdk.Exported
39 | public interface SerialDataTree extends BlockTagTree {
40 | List extends DocTree> getDescription();
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/UnknownInlineTagTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package com.sun.source.doctree;
26 |
27 | import java.util.List;
28 |
29 | /**
30 | * A tree node for an unrecognized inline tag.
31 | *
32 | *
33 | * {@name content}
34 | *
35 | * @since 1.8
36 | *
37 | */
38 | @jdk.Exported
39 | public interface UnknownInlineTagTree extends InlineTagTree {
40 | List extends DocTree> getContent();
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/tree/UnionTypeTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.tree;
27 |
28 | import java.util.List;
29 |
30 | /**
31 | * A tree node for a union type expression in a multicatch var declaration.
32 | *
33 | * @author Maurizio Cimadamore
34 | *
35 | * @since 1.7
36 | */
37 | @jdk.Exported
38 | public interface UnionTypeTree extends Tree {
39 | List extends Tree> getTypeAlternatives();
40 | }
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/ButtonUI.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2004, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package javax.swing.plaf;
26 |
27 | import javax.swing.AbstractButton;
28 | import javax.swing.GrayFilter;
29 | import javax.swing.Icon;
30 | import javax.swing.ImageIcon;
31 | import java.awt.Insets;
32 |
33 | /**
34 | * Pluggable look and feel interface for JButton.
35 | *
36 | * @author Jeff Dinkins
37 | */
38 | public abstract class ButtonUI extends ComponentUI {
39 | }
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/ServantRetentionPolicy.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/ServantRetentionPolicy.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * This policy specifies whether the created POA retains
14 | * active servants in an Active Object Map.
15 | */
16 | public interface ServantRetentionPolicy extends ServantRetentionPolicyOperations, org.omg.CORBA.Policy, org.omg.CORBA.portable.IDLEntity
17 | {
18 | } // interface ServantRetentionPolicy
19 |
--------------------------------------------------------------------------------
/JVM-Learning/GC-Review.md:
--------------------------------------------------------------------------------
1 | # GC回顾
2 | ## 基本概念
3 | * GC就是 Garbage Collection,垃圾回收
4 | >因为程序在运行时需要不断的在堆内存中进行对象的创建和销毁,避免没有使用的对象持续占用空间造成资源的浪费,
5 | 同时JVM为了方便程序员只注重业务逻辑不用关心底层的垃圾回收,所以底层自动实现了垃圾回收器对垃圾进行自动回收,
6 | 实现自动的对堆内存进行管理.
7 | * 主要的GC类型:
8 | * YoungGC: 新生代的回收,也称为MinorGC或者YGC
9 | * OldGC: 老年代的回收,只单独回收Old区域的只有CMS回收器.但**是CMS并不是完全并发的,仍然有两个阶段会STW**(初始标记,重新标记)
10 | * FullGC: 对整个堆进行垃圾回收,也称为MajorGC
11 | * FullGC触发条件(即导致FullGC的原因):
12 | * 在没有配置-XX:+DisableExplicitGC情况下,System.gc()可能会触发FullGC
13 | * promotion failed(晋升失败): 当在MinorGC时,Survivor放不下,对象只能放入老年代,而此时老年代也放不下触发FullGC
14 | * concurrent mode failure: 是在执行CMS GC的过程中同时有对象要放入老年代,而老年代空间不足导致
15 | * Metaspace Space使用达到MaxMetaspaceSize阈值
16 | * 执行jmap -histo:live或者jmap -dump:live
17 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/java/swing/plaf/nimbus/AbstractRegionPainter.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package com.sun.java.swing.plaf.nimbus;
26 |
27 | /**
28 | * This class is preserved for backward compatibility with JDK 6.
29 | *
30 | * @deprecated Use {@link javax.swing.plaf.nimbus.AbstractRegionPainter} instead.
31 | */
32 | @Deprecated
33 | public abstract class AbstractRegionPainter extends javax.swing.plaf.nimbus.AbstractRegionPainter {
34 | }
35 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/SerialTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | import java.util.List;
29 |
30 | /**
31 | * A tree node for an @serial block tag.
32 | *
33 | *
34 | * @serial field-description | include | exclude
35 | *
36 | * @since 1.8
37 | */
38 | @jdk.Exported
39 | public interface SerialTree extends BlockTagTree {
40 | List extends DocTree> getDescription();
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/awt/PrintGraphics.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1996, 1997, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package java.awt;
27 |
28 | /**
29 | * An abstract class which provides a print graphics context for a page.
30 | *
31 | * @author Amy Fowler
32 | */
33 | public interface PrintGraphics {
34 |
35 | /**
36 | * Returns the PrintJob object from which this PrintGraphics
37 | * object originated.
38 | */
39 | public PrintJob getPrintJob();
40 |
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/launcher/version_comp.h:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, 2005, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | #ifndef _VERSION_COMP_H
27 | #define _VERSION_COMP_H
28 |
29 | /*
30 | * Function prototypes.
31 | */
32 | int JLI_ExactVersionId(const char *id1, char *id2);
33 | int JLI_PrefixVersionId(const char *id1, char *id2);
34 | int JLI_AcceptableRelease(const char *release, char *version_string);
35 | int JLI_ValidVersionString(char *version_string);
36 |
37 | #endif /* _VERSION_COMP_H */
38 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/impl/encoding/MarkAndResetHandler.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package com.sun.corba.se.impl.encoding;
26 |
27 |
28 | /**
29 | * Defines an abstraction for a RestorableInputStream to
30 | * implement mark/reset.
31 | */
32 | interface MarkAndResetHandler
33 | {
34 | void mark(RestorableInputStream inputStream);
35 |
36 | void fragmentationOccured(ByteBufferWithInfo newFragment);
37 |
38 | void reset();
39 | }
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/ior/iiop/CodeSetsComponent.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.ior.iiop;
27 |
28 | import com.sun.corba.se.spi.ior.TaggedComponent ;
29 |
30 | import com.sun.corba.se.impl.encoding.CodeSetComponentInfo ;
31 |
32 | /**
33 | * @author Ken Cavanaugh
34 | */
35 | public interface CodeSetsComponent extends TaggedComponent
36 | {
37 | public CodeSetComponentInfo getCodeSetComponentInfo() ;
38 | }
39 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/ImplicitActivationPolicy.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/ImplicitActivationPolicy.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * This policy specifies whether implicit activation
14 | * of servants is supported in the created POA.
15 | */
16 | public interface ImplicitActivationPolicy extends ImplicitActivationPolicyOperations, org.omg.CORBA.Policy, org.omg.CORBA.portable.IDLEntity
17 | {
18 | } // interface ImplicitActivationPolicy
19 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/impl/encoding/RestorableInputStream.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package com.sun.corba.se.impl.encoding;
26 |
27 | /**
28 | * Defines the methods on an input stream which provide
29 | * a way to get and restore its internal state without
30 | * violating encapsulation.
31 | */
32 | interface RestorableInputStream
33 | {
34 | Object createStreamMemento();
35 |
36 | void restoreInternalState(Object streamMemento);
37 | }
38 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/ior/Writeable.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.ior;
27 |
28 | import org.omg.CORBA_2_3.portable.OutputStream ;
29 |
30 | /** This interface represents an entity that can be written to an OutputStream.
31 | * @author Ken Cavanaugh
32 | */
33 | public interface Writeable
34 | {
35 | /** Write this object directly to the output stream.
36 | */
37 | void write(OutputStream arg0);
38 | }
39 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/jmx/snmp/IPAcl/ParseError.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1997, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 |
27 | /* Generated By:JavaCC: Do not edit this line. ParseError.java Version 0.7pre1 */
28 | package com.sun.jmx.snmp.IPAcl;
29 |
30 | class ParseError extends Exception {
31 | private static final long serialVersionUID = 4907307342076722310L;
32 |
33 | public ParseError() {
34 | }
35 | public ParseError(String message) {
36 | super(message);
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/tree/ErroneousTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.tree;
27 |
28 | import java.util.List;
29 |
30 | /**
31 | * A tree node to stand in for a malformed expression.
32 | *
33 | * @author Peter von der Ahé
34 | * @author Jonathan Gibbons
35 | * @since 1.6
36 | */
37 | @jdk.Exported
38 | public interface ErroneousTree extends ExpressionTree {
39 | List extends Tree> getErrorTrees();
40 | }
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/xml/stream/events/EndDocument.java:
--------------------------------------------------------------------------------
1 | /*
2 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
3 | *
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | */
24 |
25 | /*
26 | * Copyright (c) 2009 by Oracle Corporation. All Rights Reserved.
27 | */
28 |
29 | package javax.xml.stream.events;
30 |
31 | /**
32 | * A marker interface for the end of the document
33 | *
34 | * @version 1.0
35 | * @author Copyright (c) 2009 by Oracle Corporation. All Rights Reserved.
36 | * @since 1.6
37 | */
38 | public interface EndDocument extends XMLEvent {
39 | /**
40 | * No methods are defined in this interface.
41 | */
42 | }
43 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/IOP/CodecPackage/TypeMismatch.java:
--------------------------------------------------------------------------------
1 | package org.omg.IOP.CodecPackage;
2 |
3 |
4 | /**
5 | * org/omg/IOP/CodecPackage/TypeMismatch.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/IOP.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class TypeMismatch extends org.omg.CORBA.UserException
12 | {
13 |
14 | public TypeMismatch ()
15 | {
16 | super(TypeMismatchHelper.id());
17 | } // ctor
18 |
19 |
20 | public TypeMismatch (String $reason)
21 | {
22 | super(TypeMismatchHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class TypeMismatch
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/POAPackage/NoServant.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer.POAPackage;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/POAPackage/NoServant.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public final class NoServant extends org.omg.CORBA.UserException
12 | {
13 |
14 | public NoServant ()
15 | {
16 | super(NoServantHelper.id());
17 | } // ctor
18 |
19 |
20 | public NoServant (String $reason)
21 | {
22 | super(NoServantHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class NoServant
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/impl/presentation/rmi/IDLTypeException.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.impl.presentation.rmi ;
27 |
28 | /**
29 | * Checked exception containing information about an
30 | * an IDL type validation.
31 | */
32 | public class IDLTypeException extends Exception {
33 |
34 | public IDLTypeException() {}
35 |
36 | public IDLTypeException(String message) {
37 | super(message);
38 | }
39 |
40 | }
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/util/zip/ZStreamRef.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package java.util.zip;
27 |
28 | /**
29 | * A reference to the native zlib's z_stream structure.
30 | */
31 |
32 | class ZStreamRef {
33 |
34 | private long address;
35 | ZStreamRef (long address) {
36 | this.address = address;
37 | }
38 |
39 | long address() {
40 | return address;
41 | }
42 |
43 | void clear() {
44 | address = 0;
45 | }
46 | }
47 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/security/auth/callback/package-info.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | /**
27 | * This package provides the classes necessary for services
28 | * to interact with applications in order to retrieve
29 | * information (authentication data including usernames
30 | * or passwords, for example) or to display information
31 | * (error and warning messages, for example).
32 | *
33 | * @since JDK1.4
34 | */
35 | package javax.security.auth.callback;
36 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/CosNaming/NameComponent.java:
--------------------------------------------------------------------------------
1 | package org.omg.CosNaming;
2 |
3 |
4 | /**
5 | * org/omg/CosNaming/NameComponent.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/CosNaming/nameservice.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class NameComponent implements org.omg.CORBA.portable.IDLEntity
12 | {
13 | public String id = null;
14 | public String kind = null;
15 |
16 | public NameComponent ()
17 | {
18 | } // ctor
19 |
20 | public NameComponent (String _id, String _kind)
21 | {
22 | id = _id;
23 | kind = _kind;
24 | } // ctor
25 |
26 | } // class NameComponent
27 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/PortableActivationIDL/InitialNameService.java:
--------------------------------------------------------------------------------
1 | package com.sun.corba.se.PortableActivationIDL;
2 |
3 |
4 | /**
5 | * com/sun/corba/se/PortableActivationIDL/InitialNameService.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 |
12 | /** Interface used to support binding references in the bootstrap name
13 | * service.
14 | */
15 | public interface InitialNameService extends InitialNameServiceOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity
16 | {
17 | } // interface InitialNameService
18 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/activation/InitialNameServiceOperations.java:
--------------------------------------------------------------------------------
1 | package com.sun.corba.se.spi.activation;
2 |
3 |
4 | /**
5 | * com/sun/corba/se/spi/activation/InitialNameServiceOperations.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/com/sun/corba/se/spi/activation/activation.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public interface InitialNameServiceOperations
12 | {
13 |
14 | // bind initial name
15 | void bind (String name, org.omg.CORBA.Object obj, boolean isPersistant) throws com.sun.corba.se.spi.activation.InitialNameServicePackage.NameAlreadyBound;
16 | } // interface InitialNameServiceOperations
17 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/CosNaming/NamingContextPackage/NotEmpty.java:
--------------------------------------------------------------------------------
1 | package org.omg.CosNaming.NamingContextPackage;
2 |
3 |
4 | /**
5 | * org/omg/CosNaming/NamingContextPackage/NotEmpty.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/CosNaming/nameservice.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class NotEmpty extends org.omg.CORBA.UserException
12 | {
13 |
14 | public NotEmpty ()
15 | {
16 | super(NotEmptyHelper.id());
17 | } // ctor
18 |
19 |
20 | public NotEmpty (String $reason)
21 | {
22 | super(NotEmptyHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class NotEmpty
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableInterceptor/InvalidSlot.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableInterceptor;
2 |
3 |
4 | /**
5 | * org/omg/PortableInterceptor/InvalidSlot.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/Interceptors.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public final class InvalidSlot extends org.omg.CORBA.UserException
12 | {
13 |
14 | public InvalidSlot ()
15 | {
16 | super(InvalidSlotHelper.id());
17 | } // ctor
18 |
19 |
20 | public InvalidSlot (String $reason)
21 | {
22 | super(InvalidSlotHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class InvalidSlot
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/CurrentPackage/NoContext.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer.CurrentPackage;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/CurrentPackage/NoContext.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public final class NoContext extends org.omg.CORBA.UserException
12 | {
13 |
14 | public NoContext ()
15 | {
16 | super(NoContextHelper.id());
17 | } // ctor
18 |
19 |
20 | public NoContext (String $reason)
21 | {
22 | super(NoContextHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class NoContext
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/tree/EmptyStatementTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.tree;
27 |
28 | /**
29 | * A tree node for an empty (skip) statement.
30 | *
31 | * For example:
32 | *
33 | * Content is added to a
34 | * @param parameter-name description
35 | *
36 | * @since 1.8
37 | */
38 | @jdk.Exported
39 | public interface ParamTree extends BlockTagTree {
40 | boolean isTypeParameter();
41 | IdentifierTree getName();
42 | List extends DocTree> getDescription();
43 | }
44 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/awt/MenuContainer.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1995, 2004, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package java.awt;
26 |
27 | /**
28 | * The super class of all menu related containers.
29 | *
30 | * @author Arthur van Hoff
31 | */
32 |
33 | public interface MenuContainer {
34 | Font getFont();
35 | void remove(MenuComponent comp);
36 |
37 | /**
38 | * @deprecated As of JDK version 1.1
39 | * replaced by dispatchEvent(AWTEvent).
40 | */
41 | @Deprecated
42 | boolean postEvent(Event evt);
43 | }
44 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/InputMapUIResource.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package javax.swing.plaf;
27 |
28 | import javax.swing.InputMap;
29 |
30 |
31 | /**
32 | * A subclass of javax.swing.InputMap that implements UIResource.
33 | * UI classes which provide a InputMap should use this class.
34 | *
35 | * @author Scott Violet
36 | * @since 1.3
37 | */
38 | public class InputMapUIResource extends InputMap implements UIResource {
39 | public InputMapUIResource() {
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/nimbus/ComboBoxEditableState.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package javax.swing.plaf.nimbus;
26 |
27 | import java.awt.*;
28 | import javax.swing.*;
29 |
30 |
31 | class ComboBoxEditableState extends State {
32 | ComboBoxEditableState() {
33 | super("Editable");
34 | }
35 |
36 | @Override protected boolean isInState(JComponent c) {
37 |
38 | return c instanceof JComboBox && ((JComboBox)c).isEditable();
39 |
40 | }
41 | }
42 |
43 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/nimbus/SliderThumbArrowShapeState.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package javax.swing.plaf.nimbus;
26 |
27 | import java.awt.*;
28 | import javax.swing.*;
29 |
30 |
31 | class SliderThumbArrowShapeState extends State {
32 | SliderThumbArrowShapeState() {
33 | super("ArrowShape");
34 | }
35 |
36 | @Override protected boolean isInState(JComponent c) {
37 | return c.getClientProperty("Slider.paintThumbArrowShape") == Boolean.TRUE;
38 | }
39 | }
40 |
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/nimbus/SliderTrackArrowShapeState.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package javax.swing.plaf.nimbus;
26 |
27 | import java.awt.*;
28 | import javax.swing.*;
29 |
30 |
31 | class SliderTrackArrowShapeState extends State {
32 | SliderTrackArrowShapeState() {
33 | super("ArrowShape");
34 | }
35 |
36 | @Override protected boolean isInState(JComponent c) {
37 | return c.getClientProperty("Slider.paintThumbArrowShape") == Boolean.TRUE;
38 | }
39 | }
40 |
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/IOP/CodecFactoryPackage/UnknownEncoding.java:
--------------------------------------------------------------------------------
1 | package org.omg.IOP.CodecFactoryPackage;
2 |
3 |
4 | /**
5 | * org/omg/IOP/CodecFactoryPackage/UnknownEncoding.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/IOP.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public final class UnknownEncoding extends org.omg.CORBA.UserException
12 | {
13 |
14 | public UnknownEncoding ()
15 | {
16 | super(UnknownEncodingHelper.id());
17 | } // ctor
18 |
19 |
20 | public UnknownEncoding (String $reason)
21 | {
22 | super(UnknownEncodingHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class UnknownEncoding
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/POAManager.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/POAManager.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * Each POA object has an associated POAManager object.
14 | * A POA manager may be associated with one or more
15 | * POA objects. A POA manager encapsulates the processing
16 | * state of the POAs it is associated with.
17 | */
18 | public interface POAManager extends POAManagerOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity
19 | {
20 | } // interface POAManager
21 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/POAPackage/ObjectNotActive.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer.POAPackage;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/POAPackage/ObjectNotActive.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public final class ObjectNotActive extends org.omg.CORBA.UserException
12 | {
13 |
14 | public ObjectNotActive ()
15 | {
16 | super(ObjectNotActiveHelper.id());
17 | } // ctor
18 |
19 |
20 | public ObjectNotActive (String $reason)
21 | {
22 | super(ObjectNotActiveHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class ObjectNotActive
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/activation/NoSuchEndPoint.java:
--------------------------------------------------------------------------------
1 | package com.sun.corba.se.spi.activation;
2 |
3 |
4 | /**
5 | * com/sun/corba/se/spi/activation/NoSuchEndPoint.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/com/sun/corba/se/spi/activation/activation.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class NoSuchEndPoint extends org.omg.CORBA.UserException
12 | {
13 |
14 | public NoSuchEndPoint ()
15 | {
16 | super(NoSuchEndPointHelper.id());
17 | } // ctor
18 |
19 |
20 | public NoSuchEndPoint (String $reason)
21 | {
22 | super(NoSuchEndPointHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class NoSuchEndPoint
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/ActionMapUIResource.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1999, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package javax.swing.plaf;
27 |
28 | import javax.swing.ActionMap;
29 |
30 |
31 | /**
32 | * A subclass of javax.swing.ActionMap that implements UIResource.
33 | * UI classes which provide an ActionMap should use this class.
34 | *
35 | * @author Scott Violet
36 | * @since 1.3
37 | */
38 | public class ActionMapUIResource extends ActionMap implements UIResource {
39 | public ActionMapUIResource() {
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/IOP/RMICustomMaxStreamFormat.java:
--------------------------------------------------------------------------------
1 | package org.omg.IOP;
2 |
3 |
4 | /**
5 | * org/omg/IOP/RMICustomMaxStreamFormat.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/IOP.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public interface RMICustomMaxStreamFormat
12 | {
13 |
14 | /**
15 | * Identifies a CDR encapsulation of the RMICustomMaxStreamFormat
16 | * service context which contains a single byte specifying
17 | * the client's maximum RMI-IIOP stream format version.
18 | *
19 | * See Java to IDL ptc/02-01-12 1.4.12.
20 | */
21 | public static final int value = (int)(17L);
22 | }
23 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/activation/ORBPortInfo.java:
--------------------------------------------------------------------------------
1 | package com.sun.corba.se.spi.activation;
2 |
3 |
4 | /**
5 | * com/sun/corba/se/spi/activation/ORBPortInfo.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/com/sun/corba/se/spi/activation/activation.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class ORBPortInfo implements org.omg.CORBA.portable.IDLEntity
12 | {
13 | public String orbId = null;
14 | public int port = (int)0;
15 |
16 | public ORBPortInfo ()
17 | {
18 | } // ctor
19 |
20 | public ORBPortInfo (String _orbId, int _port)
21 | {
22 | orbId = _orbId;
23 | port = _port;
24 | } // ctor
25 |
26 | } // class ORBPortInfo
27 |
--------------------------------------------------------------------------------
LogicalHandler extends
29 | * Handler to provide typesafety for the message context parameter.
30 | *
31 | * @since JAX-WS 2.0
32 | **/
33 | public interface LogicalHandlerCONV_FRAME.CodeSetContext defined in
17 | * Section 13.10.2.5, "GIOP Code Set Service Context," on page 13-43.
18 | */
19 | public static final int value = (int)(1L);
20 | }
21 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/LiteralTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | /**
29 | *
30 | * A tree node for an @literal or @code inline tag.
31 | *
32 | * CosTSInteroperation.PropogationContext defined in
17 | * CORBAservices: Common Object Services Specifications.
18 | */
19 | public static final int value = (int)(0L);
20 | }
21 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/impl/protocol/giopmsgheaders/FragmentMessage.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.impl.protocol.giopmsgheaders;
27 |
28 | /**
29 | * This interface captures the FragmentMessage contract.
30 | *
31 | * @author Ram Jeyaraman 05/14/2000
32 | */
33 |
34 | public interface FragmentMessage extends Message {
35 | int getRequestId();
36 | int getHeaderLength();
37 | }
38 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/java/swing/plaf/nimbus/NimbusLookAndFeel.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package com.sun.java.swing.plaf.nimbus;
26 |
27 | /**
28 | * This class is preserved for backward compatibility with JDK 6.
29 | *
30 | * @deprecated Use {@link javax.swing.plaf.nimbus.NimbusLookAndFeel} instead.
31 | */
32 | @Deprecated
33 | public class NimbusLookAndFeel extends javax.swing.plaf.nimbus.NimbusLookAndFeel {
34 | }
35 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/ReturnTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | import java.util.List;
29 |
30 | /**
31 | * A tree node for an @return block tag.
32 | *
33 | *
33 | * ;
34 | *
35 | *
36 | * @jls section 14.6
37 | *
38 | * @author Peter von der Ahé
39 | * @author Jonathan Gibbons
40 | * @since 1.6
41 | */
42 | @jdk.Exported
43 | public interface EmptyStatementTree extends StatementTree {}
44 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/nio/file/AccessMode.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package java.nio.file;
27 |
28 | /**
29 | * Defines access modes used to test the accessibility of a file.
30 | *
31 | * @since 1.7
32 | */
33 |
34 | public enum AccessMode {
35 | /**
36 | * Test read access.
37 | */
38 | READ,
39 | /**
40 | * Test write access.
41 | */
42 | WRITE,
43 | /**
44 | * Test execute access.
45 | */
46 | EXECUTE;
47 | }
48 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/lang/model/type/ReferenceType.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package javax.lang.model.type;
27 |
28 |
29 | /**
30 | * Represents a reference type.
31 | * These include class and interface types, array types, type variables,
32 | * and the null type.
33 | *
34 | * @author Joseph D. Darcy
35 | * @author Scott Seligman
36 | * @author Peter von der Ahé
37 | * @since 1.6
38 | */
39 | public interface ReferenceType extends TypeMirror {
40 | }
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/IOP/CodecFactory.java:
--------------------------------------------------------------------------------
1 | package org.omg.IOP;
2 |
3 |
4 | /**
5 | * org/omg/IOP/CodecFactory.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/IOP.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * Codecs are obtained from the CodecFactory.
14 | * The CodecFactory is obtained through a call to
15 | * ORB.resolve_initial_references( "CodecFactory" ).
16 | */
17 | public interface CodecFactory extends CodecFactoryOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity
18 | {
19 | } // interface CodecFactory
20 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/IOP/CodecPackage/FormatMismatch.java:
--------------------------------------------------------------------------------
1 | package org.omg.IOP.CodecPackage;
2 |
3 |
4 | /**
5 | * org/omg/IOP/CodecPackage/FormatMismatch.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableInterceptor/IOP.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class FormatMismatch extends org.omg.CORBA.UserException
12 | {
13 |
14 | public FormatMismatch ()
15 | {
16 | super(FormatMismatchHelper.id());
17 | } // ctor
18 |
19 |
20 | public FormatMismatch (String $reason)
21 | {
22 | super(FormatMismatchHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class FormatMismatch
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/POAPackage/WrongPolicy.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer.POAPackage;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/POAPackage/WrongPolicy.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public final class WrongPolicy extends org.omg.CORBA.UserException
12 | {
13 |
14 | public WrongPolicy ()
15 | {
16 | super(WrongPolicyHelper.id());
17 | } // ctor
18 |
19 |
20 | public WrongPolicy (String $reason)
21 | {
22 | super(WrongPolicyHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class WrongPolicy
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/RequestProcessingPolicy.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/RequestProcessingPolicy.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * This policy specifies how requests are processed by
14 | * the created POA. The default is
15 | * USE_ACTIVE_OBJECT_MAP_ONLY.
16 | */
17 | public interface RequestProcessingPolicy extends RequestProcessingPolicyOperations, org.omg.CORBA.Policy, org.omg.CORBA.portable.IDLEntity
18 | {
19 | } // interface RequestProcessingPolicy
20 |
--------------------------------------------------------------------------------
/jdk1.8/src/java/net/StandardProtocolFamily.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2007, 2009, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package java.net;
27 |
28 | /**
29 | * Defines the standard families of communication protocols.
30 | *
31 | * @since 1.7
32 | */
33 |
34 | public enum StandardProtocolFamily implements ProtocolFamily {
35 |
36 | /**
37 | * Internet Protocol Version 4 (IPv4)
38 | */
39 | INET,
40 |
41 | /**
42 | * Internet Protocol Version 6 (IPv6)
43 | */
44 | INET6
45 | }
46 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/xml/soap/DetailEntry.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package javax.xml.soap;
27 |
28 | /**
29 | * The content for a Detail object, giving details for
30 | * a SOAPFault object. A DetailEntry object,
31 | * which carries information about errors related to the SOAPBody
32 | * object that contains it, is application-specific.
33 | */
34 | public interface DetailEntry extends SOAPElement {
35 |
36 | }
37 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/DynamicAny/DynAnyPackage/InvalidValue.java:
--------------------------------------------------------------------------------
1 | package org.omg.DynamicAny.DynAnyPackage;
2 |
3 |
4 | /**
5 | * org/omg/DynamicAny/DynAnyPackage/InvalidValue.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/DynamicAny/DynamicAny.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class InvalidValue extends org.omg.CORBA.UserException
12 | {
13 |
14 | public InvalidValue ()
15 | {
16 | super(InvalidValueHelper.id());
17 | } // ctor
18 |
19 |
20 | public InvalidValue (String $reason)
21 | {
22 | super(InvalidValueHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class InvalidValue
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/DynamicAny/DynAnyPackage/TypeMismatch.java:
--------------------------------------------------------------------------------
1 | package org.omg.DynamicAny.DynAnyPackage;
2 |
3 |
4 | /**
5 | * org/omg/DynamicAny/DynAnyPackage/TypeMismatch.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/DynamicAny/DynamicAny.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class TypeMismatch extends org.omg.CORBA.UserException
12 | {
13 |
14 | public TypeMismatch ()
15 | {
16 | super(TypeMismatchHelper.id());
17 | } // ctor
18 |
19 |
20 | public TypeMismatch (String $reason)
21 | {
22 | super(TypeMismatchHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class TypeMismatch
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/IdAssignmentPolicy.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/IdAssignmentPolicy.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * IdAssignmentPolicy specifies whether Object Ids in
14 | * the created POA are generated by the application or
15 | * by the ORB. The default is SYSTEM_ID.
16 | */
17 | public interface IdAssignmentPolicy extends IdAssignmentPolicyOperations, org.omg.CORBA.Policy, org.omg.CORBA.portable.IDLEntity
18 | {
19 | } // interface IdAssignmentPolicy
20 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/POAPackage/WrongAdapter.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer.POAPackage;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/POAPackage/WrongAdapter.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 | public final class WrongAdapter extends org.omg.CORBA.UserException
12 | {
13 |
14 | public WrongAdapter ()
15 | {
16 | super(WrongAdapterHelper.id());
17 | } // ctor
18 |
19 |
20 | public WrongAdapter (String $reason)
21 | {
22 | super(WrongAdapterHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class WrongAdapter
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/protocol/ClientDelegateFactory.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2002, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.protocol ;
27 |
28 | import com.sun.corba.se.spi.transport.CorbaContactInfoList ;
29 |
30 | import com.sun.corba.se.spi.protocol.CorbaClientDelegate ;
31 |
32 | /** Interface used to create a ClientDelegate from a ContactInfoList.
33 | */
34 | public interface ClientDelegateFactory {
35 | CorbaClientDelegate create( CorbaContactInfoList list ) ;
36 | }
37 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/javadoc/AnnotatedType.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.javadoc;
27 |
28 |
29 | /**
30 | * Represents an annotated type.
31 | * For example:
32 | *
33 | * {@code @NonNull String}
34 | * {@code @Positive int}
35 | *
36 | *
37 | * @author Mahmood Ali
38 | * @since 1.8
39 | */
40 | public interface AnnotatedType extends Type {
41 |
42 | AnnotationDesc[] annotations();
43 |
44 | Type underlyingType();
45 | }
46 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/CORBA/portable/BoxedValueHelper.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1999, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | /*
26 | * Licensed Materials - Property of IBM
27 | * RMI-IIOP v1.0
28 | * Copyright IBM Corp. 1998 1999 All Rights Reserved
29 | *
30 | */
31 |
32 | package org.omg.CORBA.portable;
33 | import java.io.Serializable;
34 |
35 | public interface BoxedValueHelper {
36 | Serializable read_value(InputStream is);
37 | void write_value(OutputStream os, Serializable value);
38 | String get_id();
39 | }
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/PortableServer/IdUniquenessPolicy.java:
--------------------------------------------------------------------------------
1 | package org.omg.PortableServer;
2 |
3 |
4 | /**
5 | * org/omg/PortableServer/IdUniquenessPolicy.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/PortableServer/poa.idl
8 | * Wednesday, July 30, 2014 1:14:28 PM PDT
9 | */
10 |
11 |
12 | /**
13 | * The IdUniquenessPolicy specifies whether the servants
14 | * activated in the created POA must have unique object i
15 | * identities. The default is UNIQUE_ID.
16 | */
17 | public interface IdUniquenessPolicy extends IdUniquenessPolicyOperations, org.omg.CORBA.Policy, org.omg.CORBA.portable.IDLEntity
18 | {
19 | } // interface IdUniquenessPolicy
20 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/impl/orbutil/closure/Constant.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.impl.orbutil.closure ;
27 |
28 | import com.sun.corba.se.spi.orbutil.closure.Closure ;
29 |
30 | public class Constant implements Closure {
31 | private Object value ;
32 |
33 | public Constant( Object value )
34 | {
35 | this.value = value ;
36 | }
37 |
38 | public Object evaluate()
39 | {
40 | return value ;
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/activation/InvalidORBid.java:
--------------------------------------------------------------------------------
1 | package com.sun.corba.se.spi.activation;
2 |
3 |
4 | /**
5 | * com/sun/corba/se/spi/activation/InvalidORBid.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/com/sun/corba/se/spi/activation/activation.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class InvalidORBid extends org.omg.CORBA.UserException
12 | {
13 |
14 | public InvalidORBid ()
15 | {
16 | super(InvalidORBidHelper.id());
17 | } // ctor
18 |
19 |
20 | public InvalidORBid (String $reason)
21 | {
22 | super(InvalidORBidHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class InvalidORBid
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/tree/ArrayTypeTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.tree;
27 |
28 | /**
29 | * A tree node for an array type.
30 | *
31 | * For example:
32 | *
33 | * type []
34 | *
35 | *
36 | * @jls section 10.1
37 | *
38 | * @author Peter von der Ahé
39 | * @author Jonathan Gibbons
40 | * @since 1.6
41 | */
42 | @jdk.Exported
43 | public interface ArrayTypeTree extends Tree {
44 | Tree getType();
45 | }
46 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/swing/plaf/nimbus/SliderArrowShapeState.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2005, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 | package javax.swing.plaf.nimbus;
26 |
27 | import java.awt.*;
28 | import javax.swing.*;
29 |
30 |
31 | class SliderArrowShapeState extends State {
32 | SliderArrowShapeState() {
33 | super("ArrowShape");
34 | }
35 |
36 | @Override protected boolean isInState(JComponent c) {
37 | return c.getClientProperty("Slider.paintThumbArrowShape") == Boolean.TRUE;
38 | }
39 | }
40 |
41 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/CosNaming/NamingContextPackage/InvalidName.java:
--------------------------------------------------------------------------------
1 | package org.omg.CosNaming.NamingContextPackage;
2 |
3 |
4 | /**
5 | * org/omg/CosNaming/NamingContextPackage/InvalidName.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/CosNaming/nameservice.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class InvalidName extends org.omg.CORBA.UserException
12 | {
13 |
14 | public InvalidName ()
15 | {
16 | super(InvalidNameHelper.id());
17 | } // ctor
18 |
19 |
20 | public InvalidName (String $reason)
21 | {
22 | super(InvalidNameHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class InvalidName
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/impl/protocol/giopmsgheaders/LocateRequestMessage.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2000, 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.impl.protocol.giopmsgheaders;
27 |
28 | import com.sun.corba.se.spi.ior.ObjectKey;
29 |
30 | /**
31 | * This interface captures the LocateRequestMessage contract.
32 | *
33 | * @author Ram Jeyaraman 05/14/2000
34 | */
35 |
36 | public interface LocateRequestMessage extends Message {
37 | int getRequestId();
38 | ObjectKey getObjectKey();
39 | }
40 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/impl/util/IdentityHashtableEntry.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 1999, 2004, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | /*
27 | * Licensed Materials - Property of IBM
28 | * RMI-IIOP v1.0
29 | * Copyright IBM Corp. 1998 1999 All Rights Reserved
30 | *
31 | */
32 |
33 | package com.sun.corba.se.impl.util;
34 |
35 | /**
36 | * IdentityHashtable collision list.
37 | */
38 | class IdentityHashtableEntry {
39 | int hash;
40 | Object key;
41 | Object value;
42 | IdentityHashtableEntry next;
43 | }
44 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/pept/transport/InboundConnectionCache.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.pept.transport;
27 |
28 | /**
29 | * @author Harold Carr
30 | */
31 | public interface InboundConnectionCache
32 | extends ConnectionCache
33 | {
34 | public Connection get(Acceptor acceptor); // REVISIT
35 |
36 | public void put(Acceptor acceptor, Connection connection);
37 |
38 | public void remove(Connection connection);
39 | }
40 |
41 | // End of file.
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/jmx/snmp/IPAcl/JDMIpV6Address.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2002, 2006, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | /* Generated By:JJTree: Do not edit this line. JDMIpV6Address.java */
27 |
28 | package com.sun.jmx.snmp.IPAcl;
29 |
30 | class JDMIpV6Address extends JDMIpAddress {
31 | private static final long serialVersionUID = -5929917334606674243L;
32 |
33 | public JDMIpV6Address(int id) {
34 | super(id);
35 | }
36 |
37 | public JDMIpV6Address(Parser p, int id) {
38 | super(p, id);
39 | }
40 |
41 | }
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/pept/transport/OutboundConnectionCache.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.pept.transport;
27 |
28 | /**
29 | * @author Harold Carr
30 | */
31 | public interface OutboundConnectionCache
32 | extends ConnectionCache
33 | {
34 | public Connection get(ContactInfo contactInfo);
35 |
36 | public void put(ContactInfo contactInfo, Connection connection);
37 |
38 | public void remove(ContactInfo contactInfo);
39 | }
40 |
41 | // End of file.
42 |
--------------------------------------------------------------------------------
/jdk1.8/src/javax/xml/soap/SOAPFaultElement.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2004, 2012, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package javax.xml.soap;
27 |
28 | /**
29 | * A representation of the contents in
30 | * a SOAPFault object. The Detail interface
31 | * is a SOAPFaultElement.
32 | * SOAPFaultElement using the
34 | * SOAPElement method addTextNode.
35 | */
36 | public interface SOAPFaultElement extends SOAPElement {
37 | }
38 |
--------------------------------------------------------------------------------
/jdk1.8/src/org/omg/CosNaming/NamingContextPackage/AlreadyBound.java:
--------------------------------------------------------------------------------
1 | package org.omg.CosNaming.NamingContextPackage;
2 |
3 |
4 | /**
5 | * org/omg/CosNaming/NamingContextPackage/AlreadyBound.java .
6 | * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 | * from /HUDSON/workspace/8-2-build-linux-amd64/jdk8u20/1074/corba/src/share/classes/org/omg/CosNaming/nameservice.idl
8 | * Wednesday, July 30, 2014 1:14:27 PM PDT
9 | */
10 |
11 | public final class AlreadyBound extends org.omg.CORBA.UserException
12 | {
13 |
14 | public AlreadyBound ()
15 | {
16 | super(AlreadyBoundHelper.id());
17 | } // ctor
18 |
19 |
20 | public AlreadyBound (String $reason)
21 | {
22 | super(AlreadyBoundHelper.id() + " " + $reason);
23 | } // ctor
24 |
25 | } // class AlreadyBound
26 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/corba/se/spi/ior/TaggedComponentFactoryFinder.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.corba.se.spi.ior;
27 |
28 | public interface TaggedComponentFactoryFinder extends IdentifiableFactoryFinder
29 | {
30 | /** Create a tagged component from a GIOP marshalled representation
31 | * of a tagged component. This is needed for portable interceptors.
32 | */
33 | TaggedComponent create( org.omg.CORBA.ORB orb,
34 | org.omg.IOP.TaggedComponent comp ) ;
35 | }
36 |
--------------------------------------------------------------------------------
/jdk1.8/src/com/sun/source/doctree/ParamTree.java:
--------------------------------------------------------------------------------
1 | /*
2 | * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
4 | *
5 | *
6 | *
7 | *
8 | *
9 | *
10 | *
11 | *
12 | *
13 | *
14 | *
15 | *
16 | *
17 | *
18 | *
19 | *
20 | *
21 | *
22 | *
23 | *
24 | */
25 |
26 | package com.sun.source.doctree;
27 |
28 | import java.util.List;
29 |
30 | /**
31 | * A tree node for an @param block tag.
32 | *
33 | *