├── src ├── java │ ├── lang │ │ ├── Integer.java │ │ ├── ThreadLocal.java │ │ ├── AbstractStringBuilder.java │ │ ├── annotation │ │ │ └── package-info.java │ │ ├── invoke │ │ │ ├── InvokeDynamic.java │ │ │ ├── DontInline.java │ │ │ └── ForceInline.java │ │ ├── ref │ │ │ └── FinalReference.java │ │ └── reflect │ │ │ ├── Type.java │ │ │ └── GenericSignatureFormatError.java │ ├── util │ │ ├── HashSet.java │ │ ├── Vector.java │ │ ├── ArrayList.java │ │ ├── Collection.java │ │ ├── Hashtable.java │ │ ├── LinkedList.java │ │ ├── RandomAccess.java │ │ ├── LinkedHashMap.java │ │ ├── LinkedHashSet.java │ │ ├── PriorityQueue.java │ │ ├── AbstractSequentialList.java │ │ ├── concurrent │ │ │ ├── ArrayBlockingQueue.java │ │ │ ├── ConcurrentHashMap.java │ │ │ ├── CopyOnWriteArraySet.java │ │ │ └── CopyOnWriteArrayList.java │ │ ├── EventListener.java │ │ └── zip │ │ │ └── ZStreamRef.java │ ├── net │ │ ├── ProtocolFamily.java │ │ ├── StandardProtocolFamily.java │ │ └── DefaultInterface.java │ ├── nio │ │ └── file │ │ │ ├── FileVisitOption.java │ │ │ ├── attribute │ │ │ └── FileStoreAttributeView.java │ │ │ └── AccessMode.java │ ├── awt │ │ ├── Conditional.java │ │ ├── PrintGraphics.java │ │ ├── MenuContainer.java │ │ ├── event │ │ │ └── AdjustmentListener.java │ │ └── peer │ │ │ └── FontPeer.java │ ├── beans │ │ └── ExceptionListener.java │ └── security │ │ └── interfaces │ │ └── RSAKey.java ├── sun │ └── nio │ │ └── cs │ │ └── ext │ │ └── META-INF │ │ └── services │ │ └── java.nio.charset.spi.CharsetProvider ├── com │ └── sun │ │ ├── corba │ │ └── se │ │ │ ├── spi │ │ │ ├── ior │ │ │ │ ├── MakeImmutable.java │ │ │ │ ├── ObjectId.java │ │ │ │ ├── WriteContents.java │ │ │ │ ├── iiop │ │ │ │ │ ├── RequestPartitioningComponent.java │ │ │ │ │ ├── ORBTypeComponent.java │ │ │ │ │ ├── JavaCodebaseComponent.java │ │ │ │ │ ├── MaxStreamFormatVersionComponent.java │ │ │ │ │ ├── AlternateIIOPAddressComponent.java │ │ │ │ │ ├── IIOPAddress.java │ │ │ │ │ └── CodeSetsComponent.java │ │ │ │ ├── Writeable.java │ │ │ │ └── TaggedComponentFactoryFinder.java │ │ │ ├── orbutil │ │ │ │ ├── closure │ │ │ │ │ └── Closure.java │ │ │ │ ├── threadpool │ │ │ │ │ ├── NoSuchWorkQueueException.java │ │ │ │ │ └── NoSuchThreadPoolException.java │ │ │ │ └── fsm │ │ │ │ │ ├── InputImpl.java │ │ │ │ │ ├── GuardBase.java │ │ │ │ │ ├── ActionBase.java │ │ │ │ │ └── StateEngineFactory.java │ │ │ ├── activation │ │ │ │ ├── Locator.java │ │ │ │ ├── Activator.java │ │ │ │ ├── Repository.java │ │ │ │ ├── IIOP_CLEAR_TEXT.java │ │ │ │ ├── InitialNameService.java │ │ │ │ ├── ServerManager.java │ │ │ │ ├── Server.java │ │ │ │ ├── ServerManagerOperations.java │ │ │ │ ├── InitialNameServiceOperations.java │ │ │ │ ├── InvalidORBid.java │ │ │ │ ├── NoSuchEndPoint.java │ │ │ │ ├── ORBPortInfo.java │ │ │ │ └── EndPointInfo.java │ │ │ ├── transport │ │ │ │ ├── CorbaConnectionCache.java │ │ │ │ ├── SocketOrChannelAcceptor.java │ │ │ │ ├── ReadTimeouts.java │ │ │ │ ├── ReadTimeoutsFactory.java │ │ │ │ └── IORToSocketInfo.java │ │ │ ├── legacy │ │ │ │ ├── connection │ │ │ │ │ └── Connection.java │ │ │ │ └── interceptor │ │ │ │ │ ├── UnknownType.java │ │ │ │ │ └── IORInfoExt.java │ │ │ ├── logging │ │ │ │ └── LogWrapperFactory.java │ │ │ ├── oa │ │ │ │ └── OADestroyed.java │ │ │ ├── protocol │ │ │ │ ├── CorbaClientDelegate.java │ │ │ │ ├── LocalClientRequestDispatcherFactory.java │ │ │ │ └── ClientDelegateFactory.java │ │ │ ├── encoding │ │ │ │ └── CorbaInputObject.java │ │ │ ├── copyobject │ │ │ │ ├── ObjectCopierFactory.java │ │ │ │ └── ReflectiveCopyException.java │ │ │ └── orb │ │ │ │ └── Operation.java │ │ │ ├── impl │ │ │ ├── orbutil │ │ │ │ ├── threadpool │ │ │ │ │ └── TimeoutException.java │ │ │ │ ├── graph │ │ │ │ │ ├── Graph.java │ │ │ │ │ └── Node.java │ │ │ │ └── closure │ │ │ │ │ └── Constant.java │ │ │ ├── copyobject │ │ │ │ └── ReferenceObjectCopierImpl.java │ │ │ ├── corba │ │ │ │ └── TypeCodeFactory.java │ │ │ ├── protocol │ │ │ │ └── giopmsgheaders │ │ │ │ │ ├── FragmentMessage.java │ │ │ │ │ ├── CancelRequestMessage.java │ │ │ │ │ └── LocateRequestMessage.java │ │ │ ├── encoding │ │ │ │ ├── MarkAndResetHandler.java │ │ │ │ └── RestorableInputStream.java │ │ │ ├── presentation │ │ │ │ └── rmi │ │ │ │ │ └── IDLTypeException.java │ │ │ └── io │ │ │ │ └── TypeMismatchException.java │ │ │ ├── PortableActivationIDL │ │ │ ├── Locator.java │ │ │ ├── Activator.java │ │ │ ├── Repository.java │ │ │ ├── ORBProxy.java │ │ │ ├── ServerProxy.java │ │ │ ├── InitialNameService.java │ │ │ ├── InvalidORBid.java │ │ │ ├── NoSuchEndPoint.java │ │ │ ├── ORBPortInfo.java │ │ │ ├── IIOP_CLEAR_TEXT.java │ │ │ ├── EndPointInfo.java │ │ │ └── ServerManager.java │ │ │ ├── pept │ │ │ └── transport │ │ │ │ ├── ReaderThread.java │ │ │ │ ├── ListenerThread.java │ │ │ │ ├── ByteBufferPool.java │ │ │ │ ├── InboundConnectionCache.java │ │ │ │ └── OutboundConnectionCache.java │ │ │ └── internal │ │ │ ├── POA │ │ │ └── POAORB.java │ │ │ ├── corba │ │ │ └── ORBSingleton.java │ │ │ ├── Interceptors │ │ │ └── PIORB.java │ │ │ └── iiop │ │ │ └── ORB.java │ │ ├── source │ │ ├── util │ │ │ ├── package-info.java │ │ │ └── TaskListener.java │ │ └── tree │ │ │ ├── package-info.java │ │ │ ├── StatementTree.java │ │ │ ├── ExpressionTree.java │ │ │ ├── UnionTypeTree.java │ │ │ ├── ErroneousTree.java │ │ │ ├── EmptyStatementTree.java │ │ │ ├── ArrayTypeTree.java │ │ │ ├── ThrowTree.java │ │ │ ├── ReturnTree.java │ │ │ ├── ExpressionStatementTree.java │ │ │ └── IdentifierTree.java │ │ ├── javadoc │ │ └── ConstructorDoc.java │ │ ├── java │ │ └── swing │ │ │ ├── plaf │ │ │ ├── windows │ │ │ │ └── WindowsSeparatorUI.java │ │ │ └── nimbus │ │ │ │ ├── NimbusLookAndFeel.java │ │ │ │ └── AbstractRegionPainter.java │ │ │ └── Painter.java │ │ ├── jmx │ │ ├── remote │ │ │ └── internal │ │ │ │ └── Unmarshal.java │ │ └── snmp │ │ │ ├── internal │ │ │ ├── SnmpModelLcd.java │ │ │ └── SnmpSecurityCache.java │ │ │ ├── IPAcl │ │ │ ├── ParseError.java │ │ │ └── JDMIpV6Address.java │ │ │ └── SnmpAckPdu.java │ │ ├── imageio │ │ └── plugins │ │ │ └── common │ │ │ └── I18N.java │ │ ├── org │ │ └── apache │ │ │ └── xml │ │ │ └── internal │ │ │ └── security │ │ │ └── utils │ │ │ └── ElementChecker.java │ │ └── mirror │ │ ├── type │ │ └── package-info.java │ │ └── util │ │ └── package-info.java ├── launcher │ ├── wildcard.h │ ├── splashscreen.h │ └── version_comp.h ├── org │ └── omg │ │ ├── PortableInterceptor │ │ ├── UNKNOWN.java │ │ ├── ACTIVE.java │ │ ├── DISCARDING.java │ │ ├── NON_EXISTENT.java │ │ ├── HOLDING.java │ │ ├── IORInterceptor_3_0.java │ │ ├── Interceptor.java │ │ ├── INACTIVE.java │ │ ├── InvalidSlot.java │ │ ├── ORBInitInfoPackage │ │ │ └── InvalidName.java │ │ ├── SUCCESSFUL.java │ │ ├── USER_EXCEPTION.java │ │ ├── LOCATION_FORWARD.java │ │ ├── SYSTEM_EXCEPTION.java │ │ └── TRANSPORT_RETRY.java │ │ ├── PortableServer │ │ ├── THREAD_POLICY_ID.java │ │ ├── LIFESPAN_POLICY_ID.java │ │ ├── ID_ASSIGNMENT_POLICY_ID.java │ │ ├── ID_UNIQUENESS_POLICY_ID.java │ │ ├── REQUEST_PROCESSING_POLICY_ID.java │ │ ├── SERVANT_RETENTION_POLICY_ID.java │ │ ├── IMPLICIT_ACTIVATION_POLICY_ID.java │ │ ├── ThreadPolicy.java │ │ ├── ServantActivator.java │ │ ├── LifespanPolicy.java │ │ ├── ServantRetentionPolicy.java │ │ ├── ImplicitActivationPolicy.java │ │ ├── POAPackage │ │ │ ├── NoServant.java │ │ │ ├── WrongPolicy.java │ │ │ ├── WrongAdapter.java │ │ │ ├── ObjectNotActive.java │ │ │ ├── ServantNotActive.java │ │ │ ├── AdapterNonExistent.java │ │ │ ├── ObjectAlreadyActive.java │ │ │ ├── AdapterAlreadyExists.java │ │ │ └── ServantAlreadyActive.java │ │ ├── CurrentPackage │ │ │ └── NoContext.java │ │ ├── RequestProcessingPolicy.java │ │ ├── IdAssignmentPolicy.java │ │ ├── IdUniquenessPolicy.java │ │ ├── POAManager.java │ │ ├── POAManagerPackage │ │ │ └── AdapterInactive.java │ │ ├── ThreadPolicyOperations.java │ │ ├── LifespanPolicyOperations.java │ │ ├── ServantRetentionPolicyOperations.java │ │ └── ImplicitActivationPolicyOperations.java │ │ ├── IOP │ │ ├── ENCODING_CDR_ENCAPS.java │ │ ├── TAG_POLICIES.java │ │ ├── CodeSets.java │ │ ├── TransactionService.java │ │ ├── CodecPackage │ │ │ ├── TypeMismatch.java │ │ │ ├── FormatMismatch.java │ │ │ └── InvalidTypeForEncoding.java │ │ ├── CodecFactory.java │ │ ├── CodecFactoryPackage │ │ │ └── UnknownEncoding.java │ │ └── RMICustomMaxStreamFormat.java │ │ ├── DynamicAny │ │ ├── DynSequence.java │ │ ├── DynEnum.java │ │ ├── DynValueCommon.java │ │ ├── DynStruct.java │ │ ├── DynAnyPackage │ │ │ ├── InvalidValue.java │ │ │ └── TypeMismatch.java │ │ ├── DynFixed.java │ │ ├── DynArray.java │ │ └── DynAnyFactoryPackage │ │ │ └── InconsistentTypeCode.java │ │ ├── Messaging │ │ └── SYNC_WITH_TRANSPORT.java │ │ ├── CORBA │ │ ├── BAD_POLICY.java │ │ ├── BAD_POLICY_TYPE.java │ │ ├── portable │ │ │ ├── BoxedValueHelper.java │ │ │ ├── IDLEntity.java │ │ │ └── StreamableValue.java │ │ ├── UNSUPPORTED_POLICY.java │ │ └── VM_NONE.java │ │ ├── CosNaming │ │ ├── NameComponent.java │ │ ├── NamingContextPackage │ │ │ ├── NotEmpty.java │ │ │ ├── InvalidName.java │ │ │ └── AlreadyBound.java │ │ └── NamingContextExtPackage │ │ │ └── InvalidAddress.java │ │ └── Dynamic │ │ └── Parameter.java └── javax │ ├── swing │ ├── plaf │ │ ├── LabelUI.java │ │ ├── PanelUI.java │ │ ├── SliderUI.java │ │ ├── TableUI.java │ │ ├── ToolTipUI.java │ │ ├── ScrollBarUI.java │ │ ├── ViewportUI.java │ │ ├── TableHeaderUI.java │ │ ├── ProgressBarUI.java │ │ ├── DesktopIconUI.java │ │ ├── DesktopPaneUI.java │ │ ├── InternalFrameUI.java │ │ ├── ScrollPaneUI.java │ │ ├── RootPaneUI.java │ │ ├── SpinnerUI.java │ │ ├── SeparatorUI.java │ │ ├── ToolBarUI.java │ │ ├── MenuItemUI.java │ │ ├── MenuBarUI.java │ │ ├── ColorChooserUI.java │ │ ├── nimbus │ │ │ ├── OuterGlowEffect.java │ │ │ ├── InnerGlowEffect.java │ │ │ ├── SliderArrowShapeState.java │ │ │ ├── SliderThumbArrowShapeState.java │ │ │ ├── SliderTrackArrowShapeState.java │ │ │ ├── ComboBoxEditableState.java │ │ │ ├── SplitPaneVerticalState.java │ │ │ ├── TextAreaNotInScrollPaneState.java │ │ │ └── SplitPaneDividerVerticalState.java │ │ ├── ButtonUI.java │ │ ├── InputMapUIResource.java │ │ └── ActionMapUIResource.java │ ├── SwingHeavyWeight.java │ ├── GraphicsWrapper.java │ └── event │ │ ├── HyperlinkListener.java │ │ ├── UndoableEditListener.java │ │ ├── CaretListener.java │ │ ├── MouseInputListener.java │ │ └── ChangeListener.java │ ├── xml │ ├── ws │ │ ├── wsaddressing │ │ │ └── package-info.java │ │ └── handler │ │ │ └── LogicalHandler.java │ ├── stream │ │ └── events │ │ │ ├── EndDocument.java │ │ │ └── Comment.java │ └── soap │ │ ├── DetailEntry.java │ │ └── SOAPFaultElement.java │ ├── lang │ └── model │ │ ├── type │ │ ├── NullType.java │ │ ├── ReferenceType.java │ │ └── PrimitiveType.java │ │ └── element │ │ └── QualifiedNameable.java │ ├── management │ └── loading │ │ └── PrivateClassLoader.java │ └── sound │ └── midi │ └── MidiDeviceReceiver.java ├── jdkTest └── src │ └── com │ └── jdk │ └── test │ ├── TestHashMap.java │ ├── WaitForever.java │ ├── TestHashTable.java │ ├── TestReference.java │ ├── TestThreadPool.java │ ├── TestWaitNotify.java │ ├── TestCloneOfArrayList.java │ └── TestEmunerationAndIterator.java ├── .idea ├── vcs.xml ├── compiler.xml └── smartfox_info.xml ├── JDK7源码学习.iml └── README.md /src/java/lang/Integer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/lang/Integer.java -------------------------------------------------------------------------------- /src/java/util/HashSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/HashSet.java -------------------------------------------------------------------------------- /src/java/util/Vector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/Vector.java -------------------------------------------------------------------------------- /src/java/util/ArrayList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/ArrayList.java -------------------------------------------------------------------------------- /src/java/util/Collection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/Collection.java -------------------------------------------------------------------------------- /src/java/util/Hashtable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/Hashtable.java -------------------------------------------------------------------------------- /src/java/util/LinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/LinkedList.java -------------------------------------------------------------------------------- /src/java/lang/ThreadLocal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/lang/ThreadLocal.java -------------------------------------------------------------------------------- /src/java/util/RandomAccess.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/RandomAccess.java -------------------------------------------------------------------------------- /src/java/util/LinkedHashMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/LinkedHashMap.java -------------------------------------------------------------------------------- /src/java/util/LinkedHashSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/LinkedHashSet.java -------------------------------------------------------------------------------- /src/java/util/PriorityQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/PriorityQueue.java -------------------------------------------------------------------------------- /jdkTest/src/com/jdk/test/TestHashMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/jdkTest/src/com/jdk/test/TestHashMap.java -------------------------------------------------------------------------------- /jdkTest/src/com/jdk/test/WaitForever.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/jdkTest/src/com/jdk/test/WaitForever.java -------------------------------------------------------------------------------- /src/java/lang/AbstractStringBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/lang/AbstractStringBuilder.java -------------------------------------------------------------------------------- /src/java/util/AbstractSequentialList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/AbstractSequentialList.java -------------------------------------------------------------------------------- /jdkTest/src/com/jdk/test/TestHashTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/jdkTest/src/com/jdk/test/TestHashTable.java -------------------------------------------------------------------------------- /jdkTest/src/com/jdk/test/TestReference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/jdkTest/src/com/jdk/test/TestReference.java -------------------------------------------------------------------------------- /jdkTest/src/com/jdk/test/TestThreadPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/jdkTest/src/com/jdk/test/TestThreadPool.java -------------------------------------------------------------------------------- /jdkTest/src/com/jdk/test/TestWaitNotify.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/jdkTest/src/com/jdk/test/TestWaitNotify.java -------------------------------------------------------------------------------- /src/java/util/concurrent/ArrayBlockingQueue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/concurrent/ArrayBlockingQueue.java -------------------------------------------------------------------------------- /src/java/util/concurrent/ConcurrentHashMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/concurrent/ConcurrentHashMap.java -------------------------------------------------------------------------------- /src/java/util/concurrent/CopyOnWriteArraySet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/concurrent/CopyOnWriteArraySet.java -------------------------------------------------------------------------------- /jdkTest/src/com/jdk/test/TestCloneOfArrayList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/jdkTest/src/com/jdk/test/TestCloneOfArrayList.java -------------------------------------------------------------------------------- /src/java/util/concurrent/CopyOnWriteArrayList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/src/java/util/concurrent/CopyOnWriteArrayList.java -------------------------------------------------------------------------------- /src/sun/nio/cs/ext/META-INF/services/java.nio.charset.spi.CharsetProvider: -------------------------------------------------------------------------------- 1 | # NIO charset SPI extended charset provider 2 | sun.nio.cs.ext.ExtendedCharsets 3 | -------------------------------------------------------------------------------- /jdkTest/src/com/jdk/test/TestEmunerationAndIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanwanpp/jdk-source/HEAD/jdkTest/src/com/jdk/test/TestEmunerationAndIterator.java -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/smartfox_info.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /JDK7源码学习.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/ior/MakeImmutable.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 MakeImmutable { 29 | void makeImmutable() ; 30 | } 31 | -------------------------------------------------------------------------------- /src/launcher/wildcard.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 WILDCARD_H_ 27 | #define WILDCARD_H_ 28 | 29 | const char *JLI_WildcardExpandClasspath(const char *classpath); 30 | 31 | #endif /* include guard */ 32 | -------------------------------------------------------------------------------- /src/org/omg/PortableInterceptor/UNKNOWN.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableInterceptor; 2 | 3 | 4 | /** 5 | * org/omg/PortableInterceptor/UNKNOWN.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 9 | */ 10 | 11 | public interface UNKNOWN 12 | { 13 | 14 | /** 15 | * XXX 16 | */ 17 | public static final short value = (short)(5); 18 | } 19 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/orbutil/closure/Closure.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.orbutil.closure ; 27 | 28 | public interface Closure { 29 | public Object evaluate() ; 30 | } 31 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/activation/Locator.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.spi.activation; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/spi/activation/Locator.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface Locator extends LocatorOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface Locator 14 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/activation/Activator.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.spi.activation; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/spi/activation/Activator.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface Activator extends ActivatorOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface Activator 14 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/impl/orbutil/threadpool/TimeoutException.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.threadpool; 27 | 28 | public class TimeoutException extends Exception 29 | { 30 | } 31 | 32 | // End of file. 33 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/activation/Repository.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.spi.activation; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/spi/activation/Repository.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface Repository extends RepositoryOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface Repository 14 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/THREAD_POLICY_ID.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/THREAD_POLICY_ID.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 9 | */ 10 | 11 | public interface THREAD_POLICY_ID 12 | { 13 | 14 | /** 15 | * The value representing THREAD_POLICY_ID. 16 | */ 17 | public static final int value = (int)(16L); 18 | } 19 | -------------------------------------------------------------------------------- /src/org/omg/IOP/ENCODING_CDR_ENCAPS.java: -------------------------------------------------------------------------------- 1 | package org.omg.IOP; 2 | 3 | 4 | /** 5 | * org/omg/IOP/ENCODING_CDR_ENCAPS.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl 8 | * Monday, June 27, 2011 12:42:31 AM GMT-08:00 9 | */ 10 | 11 | public interface ENCODING_CDR_ENCAPS 12 | { 13 | 14 | /** 15 | * The CDR Encapsulation encoding. 16 | * @see CodecFactory 17 | */ 18 | public static final short value = (short)(0); 19 | } 20 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/LIFESPAN_POLICY_ID.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/LIFESPAN_POLICY_ID.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 9 | */ 10 | 11 | public interface LIFESPAN_POLICY_ID 12 | { 13 | 14 | /** 15 | * The value representing LIFESPAN_POLICY_ID. 16 | */ 17 | public static final int value = (int)(17L); 18 | } 19 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/ior/ObjectId.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 | /** 29 | * @author Ken Cavanaugh 30 | */ 31 | public interface ObjectId extends Writeable 32 | { 33 | public byte[] getId() ; 34 | } 35 | -------------------------------------------------------------------------------- /src/java/util/EventListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1996, 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 | package java.util; 27 | 28 | /** 29 | * A tagging interface that all event listener interfaces must extend. 30 | * @since JDK1.1 31 | */ 32 | public interface EventListener { 33 | } 34 | -------------------------------------------------------------------------------- /src/org/omg/PortableInterceptor/ACTIVE.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableInterceptor; 2 | 3 | 4 | /** 5 | * org/omg/PortableInterceptor/ACTIVE.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 9 | */ 10 | 11 | public interface ACTIVE 12 | { 13 | 14 | /** Object adapter state that indicates normal request processing. 15 | */ 16 | public static final short value = (short)(1); 17 | } 18 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/PortableActivationIDL/Locator.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.PortableActivationIDL; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/PortableActivationIDL/Locator.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface Locator extends LocatorOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface Locator 14 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/orbutil/threadpool/NoSuchWorkQueueException.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.orbutil.threadpool; 27 | 28 | public class NoSuchWorkQueueException extends Exception 29 | { 30 | } 31 | 32 | // End of file. 33 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/activation/IIOP_CLEAR_TEXT.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.spi.activation; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/spi/activation/IIOP_CLEAR_TEXT.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface IIOP_CLEAR_TEXT 12 | { 13 | 14 | // to avoid a compilation dependency. 15 | public static final String value = "IIOP_CLEAR_TEXT"; 16 | } 17 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/orbutil/threadpool/NoSuchThreadPoolException.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.orbutil.threadpool; 27 | 28 | public class NoSuchThreadPoolException extends Exception 29 | { 30 | } 31 | 32 | // End of file. 33 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/PortableActivationIDL/Activator.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.PortableActivationIDL; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/PortableActivationIDL/Activator.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface Activator extends ActivatorOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface Activator 14 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/ior/WriteContents.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 | import org.omg.CORBA_2_3.portable.OutputStream ; 29 | 30 | public interface WriteContents { 31 | void writeContents( OutputStream os ) ; 32 | } 33 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface Repository extends RepositoryOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface Repository 14 | -------------------------------------------------------------------------------- /src/java/lang/annotation/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2004, 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 | * Provides library support for the Java programming language 28 | * annotation facility. 29 | * 30 | * @author Josh Bloch 31 | * @since 1.5 32 | */ 33 | package java.lang.annotation; 34 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/LabelUI.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 JLabel. 30 | * 31 | * @author Hans Muller 32 | */ 33 | public abstract class LabelUI extends ComponentUI { 34 | } 35 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/PanelUI.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 javax.swing.plaf; 27 | 28 | 29 | /** 30 | * Pluggable look and feel interface for Panel. 31 | * 32 | * @author Steve Wilson 33 | */ 34 | public abstract class PanelUI extends ComponentUI { 35 | } 36 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/SliderUI.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 JSlider. 30 | * 31 | * @author Hans Muller 32 | */ 33 | public abstract class SliderUI extends ComponentUI { 34 | } 35 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/TableUI.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 JTable. 30 | * 31 | * @author Alan Chung 32 | */ 33 | public abstract class TableUI extends ComponentUI { 34 | } 35 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/ToolTipUI.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 JToolTip. 30 | * 31 | * @author Dave Moore 32 | */ 33 | public abstract class ToolTipUI extends ComponentUI { 34 | } 35 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/activation/InitialNameService.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.spi.activation; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/spi/activation/InitialNameService.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface InitialNameService extends InitialNameServiceOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 12 | { 13 | } // interface InitialNameService 14 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/ScrollBarUI.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 JScrollBar. 30 | * 31 | * @author David Kloba 32 | */ 33 | public abstract class ScrollBarUI extends ComponentUI { 34 | } 35 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/ViewportUI.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 javax.swing.plaf; 27 | 28 | 29 | /** 30 | * Pluggable look and feel interface for JViewport. 31 | * 32 | * @author Rich Schiavi 33 | */ 34 | public abstract class ViewportUI extends ComponentUI { 35 | } 36 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/activation/ServerManager.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.spi.activation; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/spi/activation/ServerManager.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface ServerManager extends ServerManagerOperations, com.sun.corba.se.spi.activation.Activator, com.sun.corba.se.spi.activation.Locator 12 | { 13 | } // interface ServerManager 14 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/TableHeaderUI.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 JTableHeader. 30 | * 31 | * @author Alan Chung 32 | */ 33 | public abstract class TableHeaderUI extends ComponentUI { 34 | } 35 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/com/sun/source/util/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | /** 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 | package com.sun.source.util; 34 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/ProgressBarUI.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 | /** 30 | * Pluggable look and feel interface for JProgressBar. 31 | * 32 | * @author Rob Davis 33 | */ 34 | public abstract class ProgressBarUI extends ComponentUI { 35 | } 36 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/javax/swing/SwingHeavyWeight.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | package javax.swing; 26 | 27 | /** 28 | * An interface used to tag heavy weight components that we want processed 29 | * by Swing's RepaintManager. 30 | * 31 | * @author Scott Violet 32 | */ 33 | interface SwingHeavyWeight { 34 | } 35 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/DesktopIconUI.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 | /** 30 | * Pluggable look and feel interface for JDesktopIcon. 31 | * 32 | * @author David Kloba 33 | */ 34 | public abstract class DesktopIconUI extends ComponentUI { 35 | } 36 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/DesktopPaneUI.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 | /** 30 | * Pluggable look and feel interface for JDesktopPane. 31 | * 32 | * @author David Kloba 33 | */ 34 | public abstract class DesktopPaneUI extends ComponentUI { 35 | } 36 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/InternalFrameUI.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 JInternalFrame. 30 | * 31 | * @author David Kloba 32 | */ 33 | public abstract class InternalFrameUI extends ComponentUI { 34 | } 35 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/ScrollPaneUI.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 | /** 30 | * Pluggable look and feel interface for JScrollPane. 31 | * 32 | * @author Hans Muller 33 | */ 34 | 35 | public abstract class ScrollPaneUI extends ComponentUI { 36 | } 37 | -------------------------------------------------------------------------------- /src/javax/xml/ws/wsaddressing/package-info.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 | @javax.xml.bind.annotation.XmlSchema(namespace=W3CEndpointReference.NS, 27 | location="http://www.w3.org/2006/03/addressing/ws-addr.xsd") 28 | package javax.xml.ws.wsaddressing; 29 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl 8 | * Monday, June 27, 2011 12:42:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/com/sun/javadoc/ConstructorDoc.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1998, 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 com.sun.javadoc; 27 | 28 | /** 29 | * Represents a constructor of a java class. 30 | * 31 | * @since 1.2 32 | * @author Robert Field 33 | */ 34 | public interface ConstructorDoc extends ExecutableMemberDoc { 35 | } 36 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/RootPaneUI.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 | /** 29 | * Pluggable look and feel interface for JRootPane. 30 | * 31 | * @author Scott Violet 32 | * @since 1.3 33 | */ 34 | public abstract class RootPaneUI extends ComponentUI { 35 | } 36 | -------------------------------------------------------------------------------- /src/org/omg/DynamicAny/DynSequence.java: -------------------------------------------------------------------------------- 1 | package org.omg.DynamicAny; 2 | 3 | 4 | /** 5 | * org/omg/DynamicAny/DynSequence.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl 8 | * Monday, June 27, 2011 12:42:34 AM GMT-08:00 9 | */ 10 | 11 | 12 | /** 13 | * DynSequence objects support the manipulation of IDL sequences. 14 | */ 15 | public interface DynSequence extends DynSequenceOperations, org.omg.DynamicAny.DynAny, org.omg.CORBA.portable.IDLEntity 16 | { 17 | } // interface DynSequence 18 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/transport/CorbaConnectionCache.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 | /** 29 | * @author Harold Carr 30 | */ 31 | public interface CorbaConnectionCache 32 | { 33 | public String getMonitoringName(); 34 | } 35 | 36 | // End of file. 37 | -------------------------------------------------------------------------------- /src/com/sun/java/swing/plaf/windows/WindowsSeparatorUI.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 | 26 | package com.sun.java.swing.plaf.windows; 27 | 28 | import javax.swing.plaf.basic.*; 29 | 30 | /** 31 | * Windows Separator. 32 | *

33 | * 34 | */ 35 | public class WindowsSeparatorUI extends BasicSeparatorUI { } 36 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | /** 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 | package com.sun.source.tree; 35 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 31 | { 32 | NodeData getNodeData( Node node ) ; 33 | 34 | Set /* Set */ getRoots() ; 35 | } 36 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/pept/transport/ListenerThread.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 ListenerThread 32 | { 33 | public Acceptor getAcceptor(); 34 | public void close(); 35 | } 36 | 37 | // End of file. 38 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/activation/ServerManagerOperations.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.spi.activation; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/spi/activation/ServerManagerOperations.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface ServerManagerOperations extends com.sun.corba.se.spi.activation.ActivatorOperations, com.sun.corba.se.spi.activation.LocatorOperations 12 | { 13 | } // interface ServerManagerOperations 14 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/org/omg/PortableInterceptor/Interceptor.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableInterceptor; 2 | 3 | 4 | /** 5 | * org/omg/PortableInterceptor/Interceptor.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 9 | */ 10 | 11 | 12 | /** 13 | * All Portable Interceptors implement Interceptor. 14 | */ 15 | public interface Interceptor extends InterceptorOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity 16 | { 17 | } // interface Interceptor 18 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/orbutil/fsm/InputImpl.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 class InputImpl extends NameBase implements Input { 31 | public InputImpl( String name ) { super( name ) ; } 32 | } 33 | -------------------------------------------------------------------------------- /src/com/sun/java/swing/Painter.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 com.sun.java.swing; 26 | 27 | /** 28 | * This class is preserved for backward compatibility with JDK 6. 29 | * 30 | * @deprecated Use {@link javax.swing.Painter} instead. 31 | */ 32 | public interface Painter extends javax.swing.Painter { 33 | } 34 | -------------------------------------------------------------------------------- /src/org/omg/PortableInterceptor/INACTIVE.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableInterceptor; 2 | 3 | 4 | /** 5 | * org/omg/PortableInterceptor/INACTIVE.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 9 | */ 10 | 11 | public interface INACTIVE 12 | { 13 | 14 | /** Object adapter state that causes all requests to be discarded. 15 | * This state indicates that the adapter is shutting down. 16 | */ 17 | public static final short value = (short)(3); 18 | } 19 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/ior/iiop/RequestPartitioningComponent.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 | public interface RequestPartitioningComponent extends TaggedComponent 30 | { 31 | public int getRequestPartitioningId(); 32 | } 33 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/org/omg/IOP/CodeSets.java: -------------------------------------------------------------------------------- 1 | package org.omg.IOP; 2 | 3 | 4 | /** 5 | * org/omg/IOP/CodeSets.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl 8 | * Monday, June 27, 2011 12:42:31 AM GMT-08:00 9 | */ 10 | 11 | public interface CodeSets 12 | { 13 | 14 | /** 15 | * Identifies a CDR encapsulation of the 16 | * CONV_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 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/impl/orbutil/graph/Node.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 | /** Node in a graph. 31 | */ 32 | public interface Node 33 | { 34 | /** Get all the children of this node. 35 | */ 36 | Set /* Set */ getChildren() ; 37 | } 38 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/protocol/CorbaClientDelegate.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 | public abstract class CorbaClientDelegate 29 | extends org.omg.CORBA_2_3.portable.Delegate 30 | implements com.sun.corba.se.pept.protocol.ClientDelegate 31 | { 32 | } 33 | 34 | // End of file. 35 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/protocol/LocalClientRequestDispatcherFactory.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.ior.IOR ; 29 | 30 | public interface LocalClientRequestDispatcherFactory { 31 | public LocalClientRequestDispatcher create( int id, IOR ior ) ; 32 | } 33 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/internal/POA/POAORB.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 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.POA; 27 | 28 | /** 29 | * Deprecated class for backward compatibility. 30 | */ 31 | public class POAORB extends com.sun.corba.se.internal.iiop.ORB 32 | { 33 | public POAORB( ) 34 | { 35 | super(); 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/ior/iiop/ORBTypeComponent.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 ORBTypeComponent extends TaggedComponent 34 | { 35 | public int getORBType() ; 36 | } 37 | -------------------------------------------------------------------------------- /src/java/net/ProtocolFamily.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2007, 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 java.net; 27 | 28 | /** 29 | * Represents a family of communication protocols. 30 | * 31 | * @since 1.7 32 | */ 33 | 34 | public interface ProtocolFamily { 35 | /** 36 | * Returns the name of the protocol family. 37 | */ 38 | String name(); 39 | } 40 | -------------------------------------------------------------------------------- /src/launcher/splashscreen.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | 27 | int DoSplashLoadMemory(void* pdata, int size); /* requires preloading the file */ 28 | int DoSplashLoadFile(const char* filename); 29 | void DoSplashInit(void); 30 | void DoSplashClose(void); 31 | void DoSplashSetFileJarName(const char* fileName, const char* jarName); 32 | -------------------------------------------------------------------------------- /src/org/omg/DynamicAny/DynEnum.java: -------------------------------------------------------------------------------- 1 | package org.omg.DynamicAny; 2 | 3 | 4 | /** 5 | * org/omg/DynamicAny/DynEnum.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl 8 | * Monday, June 27, 2011 12:42:34 AM GMT-08:00 9 | */ 10 | 11 | 12 | /** 13 | * DynEnum objects support the manipulation of IDL enumerated values. 14 | * The current position of a DynEnum is always -1. 15 | */ 16 | public interface DynEnum extends DynEnumOperations, org.omg.DynamicAny.DynAny, org.omg.CORBA.portable.IDLEntity 17 | { 18 | } // interface DynEnum 19 | -------------------------------------------------------------------------------- /src/org/omg/DynamicAny/DynValueCommon.java: -------------------------------------------------------------------------------- 1 | package org.omg.DynamicAny; 2 | 3 | 4 | /** 5 | * org/omg/DynamicAny/DynValueCommon.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl 8 | * Monday, June 27, 2011 12:42:34 AM GMT-08:00 9 | */ 10 | 11 | 12 | /** 13 | * DynValueCommon provides operations supported by both the DynValue and DynValueBox interfaces. 14 | */ 15 | public interface DynValueCommon extends DynValueCommonOperations, org.omg.DynamicAny.DynAny, org.omg.CORBA.portable.IDLEntity 16 | { 17 | } // interface DynValueCommon 18 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/Messaging.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/java/lang/ref/FinalReference.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1997, 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 java.lang.ref; 27 | 28 | 29 | /* Final references, used to implement finalization */ 30 | 31 | class FinalReference extends Reference { 32 | 33 | public FinalReference(T referent, ReferenceQueue q) { 34 | super(referent, q); 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /src/java/nio/file/FileVisitOption.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2007, 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 java.nio.file; 27 | 28 | /** 29 | * Defines the file tree traversal options. 30 | * 31 | * @since 1.7 32 | * 33 | * @see Files#walkFileTree 34 | */ 35 | 36 | public enum FileVisitOption { 37 | /** 38 | * Follow symbolic links. 39 | */ 40 | FOLLOW_LINKS; 41 | } 42 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 LogicalHandler extends 29 | * Handler to provide typesafety for the message context parameter. 30 | * 31 | * @since JAX-WS 2.0 32 | **/ 33 | public interface LogicalHandler extends Handler { 34 | } 35 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl 8 | * Monday, June 27, 2011 12:42:31 AM GMT-08:00 9 | */ 10 | 11 | public interface TransactionService 12 | { 13 | 14 | /** 15 | * Identifies a CDR encapsulation of the 16 | * CosTSInteroperation.PropogationContext defined in 17 | * CORBAservices: Common Object Services Specifications. 18 | */ 19 | public static final int value = (int)(0L); 20 | } 21 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/impl/copyobject/ReferenceObjectCopierImpl.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.copyobject ; 27 | 28 | import com.sun.corba.se.spi.copyobject.ObjectCopier ; 29 | 30 | public class ReferenceObjectCopierImpl implements ObjectCopier 31 | { 32 | public Object copy( Object obj ) 33 | { 34 | return obj ; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/encoding/CorbaInputObject.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.encoding ; 27 | 28 | import com.sun.corba.se.impl.encoding.CDRInputStream ; 29 | import com.sun.corba.se.pept.encoding.InputObject ; 30 | 31 | public abstract class CorbaInputObject 32 | extends CDRInputStream 33 | implements InputObject 34 | { 35 | } 36 | -------------------------------------------------------------------------------- /src/java/lang/reflect/Type.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 java.lang.reflect; 27 | 28 | /** 29 | * Type is the common superinterface for all types in the Java 30 | * programming language. These include raw types, parameterized types, 31 | * array types, type variables and primitive types. 32 | * 33 | * @since 1.5 34 | */ 35 | 36 | public interface Type { 37 | } 38 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/transport/ReadTimeouts.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.transport; 27 | 28 | public interface ReadTimeouts { 29 | public int get_initial_time_to_wait(); 30 | public int get_max_time_to_wait(); 31 | public double get_backoff_factor(); 32 | public int get_max_giop_header_time_to_wait(); 33 | } 34 | 35 | // End of file. 36 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/StatementTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | 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 | public interface StatementTree extends Tree {} 39 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl 8 | * Monday, June 27, 2011 12:42:34 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/ExpressionTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | 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 | public interface ExpressionTree extends Tree {} 39 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/com/sun/java/swing/plaf/nimbus/NimbusLookAndFeel.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 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 | public class NimbusLookAndFeel extends javax.swing.plaf.nimbus.NimbusLookAndFeel { 33 | } 34 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/MenuBarUI.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.JMenuBar; 30 | 31 | import javax.swing.JMenu; 32 | /** 33 | * Pluggable look and feel interface for JMenuBar. 34 | * 35 | * @author Georges Saab 36 | * @author David Karlton 37 | */ 38 | 39 | public abstract class MenuBarUI extends ComponentUI { } 40 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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.

32 | * @since 1.5 33 | */ 34 | public interface SnmpModelLcd { 35 | } 36 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/ColorChooserUI.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 javax.swing.*; 29 | import javax.swing.colorchooser.*; 30 | 31 | /** 32 | * Pluggable look and feel interface for JColorChooser. 33 | * 34 | * @author Amy Fowler 35 | * @author Steve Wilson 36 | */ 37 | 38 | public abstract class ColorChooserUI extends ComponentUI 39 | { 40 | 41 | } 42 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl 8 | * Monday, June 27, 2011 12:42:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/com/sun/source/util/TaskListener.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 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 | public interface TaskListener 36 | { 37 | public void started(TaskEvent e); 38 | 39 | public void finished(TaskEvent e); 40 | } 41 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/CosNaming/nameservice.idl 8 | * Monday, June 27, 2011 12:42:33 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/com/sun/org/apache/xml/internal/security/utils/ElementChecker.java: -------------------------------------------------------------------------------- 1 | package com.sun.org.apache.xml.internal.security.utils; 2 | 3 | import com.sun.org.apache.xml.internal.security.exceptions.XMLSecurityException; 4 | import org.w3c.dom.Element; 5 | import org.w3c.dom.Node; 6 | 7 | public interface ElementChecker { 8 | /** 9 | * Check that the elemnt is the one expect 10 | * 11 | * @throws XMLSecurityException 12 | */ 13 | public void guaranteeThatElementInCorrectSpace(ElementProxy expected, Element actual) 14 | throws XMLSecurityException; 15 | 16 | public boolean isNamespaceElement(Node el, String type, String ns); 17 | } 18 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/UnionTypeTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2010, 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 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 | public interface UnionTypeTree extends Tree { 38 | List getTypeAlternatives(); 39 | } 40 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/CosNaming/nameservice.idl 8 | * Monday, June 27, 2011 12:42:33 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/com/sun/java/swing/plaf/nimbus/AbstractRegionPainter.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 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 | public abstract class AbstractRegionPainter extends javax.swing.plaf.nimbus.AbstractRegionPainter { 33 | } 34 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl 8 | * Monday, June 27, 2011 12:42:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl 8 | * Monday, June 27, 2011 12:42:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/ErroneousTree.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 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 | public interface ErroneousTree extends ExpressionTree { 38 | List getErrorTrees(); 39 | } 40 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl 8 | * Monday, June 27, 2011 12:42:34 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl 8 | * Monday, June 27, 2011 12:42:34 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | JDK7 2 | === 3 | 4 | Source code from JDK's src.zip. Can be used for study the evolution of Java. 5 | 6 | # How it works 7 | 8 | I [download](http://www.oracle.com/technetwork/java/javase/downloads/index.html) different versions of JDK from 1.1.x to the recent released 7u25, install or unzip them, commit source code of every src.zip into a different branch in the repository. 9 | 10 | * For JDK 1.2.2_005 and earlier, I download package for Windows. (There's no package for Linux) 11 | * For JDK 1.2.2_006 and latter, I download package for Linux. (For no needs to install, just unzip) 12 | 13 | # License 14 | 15 | Since all the code come from JDK, they belong to Sun or Oracle, you can find the license information in each file. 16 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/CosNaming/nameservice.idl 8 | * Monday, June 27, 2011 12:42:33 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/EmptyStatementTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | package com.sun.source.tree; 27 | 28 | /** 29 | * A tree node for an empty (skip) statement. 30 | * 31 | * For example: 32 | *
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 | public interface EmptyStatementTree extends StatementTree {} 43 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/CosNaming/nameservice.idl 8 | * Monday, June 27, 2011 12:42:33 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl 8 | * Monday, June 27, 2011 12:42:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/ArrayTypeTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | 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 | public interface ArrayTypeTree extends Tree { 43 | Tree getType(); 44 | } 45 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl 8 | * Monday, June 27, 2011 12:42:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/POAPackage/ServantNotActive.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer.POAPackage; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/POAPackage/ServantNotActive.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 9 | */ 10 | 11 | public final class ServantNotActive extends org.omg.CORBA.UserException 12 | { 13 | 14 | public ServantNotActive () 15 | { 16 | super(ServantNotActiveHelper.id()); 17 | } // ctor 18 | 19 | 20 | public ServantNotActive (String $reason) 21 | { 22 | super(ServantNotActiveHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class ServantNotActive 26 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/PortableActivationIDL/InvalidORBid.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.PortableActivationIDL; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/PortableActivationIDL/InvalidORBid.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/javax/xml/soap/DetailEntry.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2004, 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 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 | -------------------------------------------------------------------------------- /src/org/omg/DynamicAny/DynFixed.java: -------------------------------------------------------------------------------- 1 | package org.omg.DynamicAny; 2 | 3 | 4 | /** 5 | * org/omg/DynamicAny/DynFixed.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl 8 | * Monday, June 27, 2011 12:42:34 AM GMT-08:00 9 | */ 10 | 11 | 12 | /** 13 | * DynFixed objects support the manipulation of IDL fixed values. 14 | * Because IDL does not have a generic type that can represent fixed types with arbitrary 15 | * number of digits and arbitrary scale, the operations use the IDL string type. 16 | */ 17 | public interface DynFixed extends DynFixedOperations, org.omg.DynamicAny.DynAny, org.omg.CORBA.portable.IDLEntity 18 | { 19 | } // interface DynFixed 20 | -------------------------------------------------------------------------------- /src/org/omg/CosNaming/NamingContextExtPackage/InvalidAddress.java: -------------------------------------------------------------------------------- 1 | package org.omg.CosNaming.NamingContextExtPackage; 2 | 3 | 4 | /** 5 | * org/omg/CosNaming/NamingContextExtPackage/InvalidAddress.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/CosNaming/nameservice.idl 8 | * Monday, June 27, 2011 12:42:33 AM GMT-08:00 9 | */ 10 | 11 | public final class InvalidAddress extends org.omg.CORBA.UserException 12 | { 13 | 14 | public InvalidAddress () 15 | { 16 | super(InvalidAddressHelper.id()); 17 | } // ctor 18 | 19 | 20 | public InvalidAddress (String $reason) 21 | { 22 | super(InvalidAddressHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class InvalidAddress 26 | -------------------------------------------------------------------------------- /src/org/omg/DynamicAny/DynArray.java: -------------------------------------------------------------------------------- 1 | package org.omg.DynamicAny; 2 | 3 | 4 | /** 5 | * org/omg/DynamicAny/DynArray.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl 8 | * Monday, June 27, 2011 12:42:34 AM GMT-08:00 9 | */ 10 | 11 | 12 | /** 13 | * DynArray objects support the manipulation of IDL arrays. 14 | * Note that the dimension of the array is contained in the TypeCode which is accessible 15 | * through the type attribute. It can also be obtained by calling the component_count operation. 16 | */ 17 | public interface DynArray extends DynArrayOperations, org.omg.DynamicAny.DynAny, org.omg.CORBA.portable.IDLEntity 18 | { 19 | } // interface DynArray 20 | -------------------------------------------------------------------------------- /src/org/omg/PortableInterceptor/ORBInitInfoPackage/InvalidName.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableInterceptor.ORBInitInfoPackage; 2 | 3 | 4 | /** 5 | * org/omg/PortableInterceptor/ORBInitInfoPackage/InvalidName.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/POAManagerPackage/AdapterInactive.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer.POAManagerPackage; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/POAManagerPackage/AdapterInactive.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 9 | */ 10 | 11 | public final class AdapterInactive extends org.omg.CORBA.UserException 12 | { 13 | 14 | public AdapterInactive () 15 | { 16 | super(AdapterInactiveHelper.id()); 17 | } // ctor 18 | 19 | 20 | public AdapterInactive (String $reason) 21 | { 22 | super(AdapterInactiveHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class AdapterInactive 26 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/POAPackage/AdapterNonExistent.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer.POAPackage; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/POAPackage/AdapterNonExistent.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 9 | */ 10 | 11 | public final class AdapterNonExistent extends org.omg.CORBA.UserException 12 | { 13 | 14 | public AdapterNonExistent () 15 | { 16 | super(AdapterNonExistentHelper.id()); 17 | } // ctor 18 | 19 | 20 | public AdapterNonExistent (String $reason) 21 | { 22 | super(AdapterNonExistentHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class AdapterNonExistent 26 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/ThreadPolicyOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/ThreadPolicyOperations.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 ThreadPolicyOperations extends org.omg.CORBA.PolicyOperations 18 | { 19 | 20 | /** 21 | * specifies the policy value 22 | */ 23 | org.omg.PortableServer.ThreadPolicyValue value (); 24 | } // interface ThreadPolicyOperations 25 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/PortableActivationIDL/NoSuchEndPoint.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.PortableActivationIDL; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/PortableActivationIDL/NoSuchEndPoint.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /src/org/omg/Dynamic/Parameter.java: -------------------------------------------------------------------------------- 1 | package org.omg.Dynamic; 2 | 3 | 4 | /** 5 | * org/omg/Dynamic/Parameter.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 9 | */ 10 | 11 | public final class Parameter implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public org.omg.CORBA.Any argument = null; 14 | public org.omg.CORBA.ParameterMode mode = null; 15 | 16 | public Parameter () 17 | { 18 | } // ctor 19 | 20 | public Parameter (org.omg.CORBA.Any _argument, org.omg.CORBA.ParameterMode _mode) 21 | { 22 | argument = _argument; 23 | mode = _mode; 24 | } // ctor 25 | 26 | } // class Parameter 27 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/ThrowTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | package com.sun.source.tree; 27 | 28 | /** 29 | * A tree node for a 'throw' statement. 30 | * 31 | * For example: 32 | *
33 |  *   throw expression;
34 |  * 
35 | * 36 | * @jls section 14.18 37 | * 38 | * @author Peter von der Ahé 39 | * @author Jonathan Gibbons 40 | * @since 1.6 41 | */ 42 | public interface ThrowTree extends StatementTree { 43 | ExpressionTree getExpression(); 44 | } 45 | -------------------------------------------------------------------------------- /src/org/omg/IOP/CodecPackage/InvalidTypeForEncoding.java: -------------------------------------------------------------------------------- 1 | package org.omg.IOP.CodecPackage; 2 | 3 | 4 | /** 5 | * org/omg/IOP/CodecPackage/InvalidTypeForEncoding.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl 8 | * Monday, June 27, 2011 12:42:31 AM GMT-08:00 9 | */ 10 | 11 | public final class InvalidTypeForEncoding extends org.omg.CORBA.UserException 12 | { 13 | 14 | public InvalidTypeForEncoding () 15 | { 16 | super(InvalidTypeForEncodingHelper.id()); 17 | } // ctor 18 | 19 | 20 | public InvalidTypeForEncoding (String $reason) 21 | { 22 | super(InvalidTypeForEncodingHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class InvalidTypeForEncoding 26 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/POAPackage/ObjectAlreadyActive.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer.POAPackage; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/POAPackage/ObjectAlreadyActive.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 9 | */ 10 | 11 | public final class ObjectAlreadyActive extends org.omg.CORBA.UserException 12 | { 13 | 14 | public ObjectAlreadyActive () 15 | { 16 | super(ObjectAlreadyActiveHelper.id()); 17 | } // ctor 18 | 19 | 20 | public ObjectAlreadyActive (String $reason) 21 | { 22 | super(ObjectAlreadyActiveHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class ObjectAlreadyActive 26 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/PortableActivationIDL/ORBPortInfo.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.PortableActivationIDL; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/PortableActivationIDL/ORBPortInfo.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/javax/xml/soap/SOAPFaultElement.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2004, 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 javax.xml.soap; 27 | 28 | /** 29 | * A representation of the contents in 30 | * a SOAPFault object. The Detail interface 31 | * is a SOAPFaultElement. 32 | *

33 | * Content is added to a SOAPFaultElement using the 34 | * SOAPElement method addTextNode. 35 | */ 36 | public interface SOAPFaultElement extends SOAPElement { 37 | } 38 | -------------------------------------------------------------------------------- /src/org/omg/PortableInterceptor/SUCCESSFUL.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableInterceptor; 2 | 3 | 4 | /** 5 | * org/omg/PortableInterceptor/SUCCESSFUL.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 9 | */ 10 | 11 | public interface SUCCESSFUL 12 | { 13 | 14 | /** 15 | * Indicates a successful Reply Status. One possible value for 16 | * RequestInfo.reply_status. 17 | * @see RequestInfo#reply_status 18 | * @see SYSTEM_EXCEPTION 19 | * @see USER_EXCEPTION 20 | * @see LOCATION_FORWARD 21 | * @see TRANSPORT_RETRY 22 | */ 23 | public static final short value = (short)(0); 24 | } 25 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/POAPackage/AdapterAlreadyExists.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer.POAPackage; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/POAPackage/AdapterAlreadyExists.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 9 | */ 10 | 11 | public final class AdapterAlreadyExists extends org.omg.CORBA.UserException 12 | { 13 | 14 | public AdapterAlreadyExists () 15 | { 16 | super(AdapterAlreadyExistsHelper.id()); 17 | } // ctor 18 | 19 | 20 | public AdapterAlreadyExists (String $reason) 21 | { 22 | super(AdapterAlreadyExistsHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class AdapterAlreadyExists 26 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/POAPackage/ServantAlreadyActive.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer.POAPackage; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/POAPackage/ServantAlreadyActive.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 9 | */ 10 | 11 | public final class ServantAlreadyActive extends org.omg.CORBA.UserException 12 | { 13 | 14 | public ServantAlreadyActive () 15 | { 16 | super(ServantAlreadyActiveHelper.id()); 17 | } // ctor 18 | 19 | 20 | public ServantAlreadyActive (String $reason) 21 | { 22 | super(ServantAlreadyActiveHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class ServantAlreadyActive 26 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/activation/EndPointInfo.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.spi.activation; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/spi/activation/EndPointInfo.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/spi/activation/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public final class EndPointInfo implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public String endpointType = null; 14 | public int port = (int)0; 15 | 16 | public EndPointInfo () 17 | { 18 | } // ctor 19 | 20 | public EndPointInfo (String _endpointType, int _port) 21 | { 22 | endpointType = _endpointType; 23 | port = _port; 24 | } // ctor 25 | 26 | } // class EndPointInfo 27 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/LifespanPolicyOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/LifespanPolicyOperations.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 LifespanPolicyOperations extends org.omg.CORBA.PolicyOperations 18 | { 19 | 20 | /** 21 | * specifies the policy value 22 | */ 23 | org.omg.PortableServer.LifespanPolicyValue value (); 24 | } // interface LifespanPolicyOperations 25 | -------------------------------------------------------------------------------- /src/java/net/DefaultInterface.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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.net; 27 | 28 | /** 29 | * Choose a network inteface to be the default for 30 | * outgoing IPv6 traffic that does not specify a scope_id (and which needs one). 31 | * 32 | * Platforms that do not require a default interface may return null 33 | * which is what this implementation does. 34 | */ 35 | 36 | class DefaultInterface { 37 | 38 | static NetworkInterface getDefault() { 39 | return null; 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /src/org/omg/CORBA/portable/IDLEntity.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1998, 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 | package org.omg.CORBA.portable; 27 | 28 | /** 29 | * An interface with no members whose only purpose is to serve as a marker 30 | * indicating that an implementing class is a 31 | * Java value type from IDL that has a corresponding Helper class. 32 | * RMI IIOP serialization looks for such a marker to perform 33 | * marshalling/unmarshalling. 34 | **/ 35 | public interface IDLEntity extends java.io.Serializable { 36 | 37 | } 38 | -------------------------------------------------------------------------------- /src/org/omg/PortableInterceptor/USER_EXCEPTION.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableInterceptor; 2 | 3 | 4 | /** 5 | * org/omg/PortableInterceptor/USER_EXCEPTION.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 9 | */ 10 | 11 | public interface USER_EXCEPTION 12 | { 13 | 14 | /** 15 | * Indicates a UserException reply status. One possible value for 16 | * RequestInfo.reply_status. 17 | * @see RequestInfo#reply_status 18 | * @see SUCCESSFUL 19 | * @see SYSTEM_EXCEPTION 20 | * @see LOCATION_FORWARD 21 | * @see TRANSPORT_RETRY 22 | */ 23 | public static final short value = (short)(2); 24 | } 25 | -------------------------------------------------------------------------------- /src/com/sun/jmx/snmp/internal/SnmpSecurityCache.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 | package com.sun.jmx.snmp.internal; 26 | 27 | /** 28 | * Cache is returned by SnmpSecurityModel when handling requests. The cache contants is security dependant. This interface is a marker that every cache classes must implement. 29 | *

This API is a Sun Microsystems internal API and is subject 30 | * to change without notice.

31 | * @since 1.5 32 | */ 33 | public interface SnmpSecurityCache { 34 | } 35 | -------------------------------------------------------------------------------- /src/javax/swing/GraphicsWrapper.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 | package javax.swing; 26 | 27 | /** 28 | * A private interface to access clip bounds in wrapped Graphics objects. 29 | * 30 | * @author Thomas Ball 31 | */ 32 | 33 | import java.awt.*; 34 | 35 | interface GraphicsWrapper { 36 | Graphics subGraphics(); 37 | 38 | boolean isClipIntersecting(Rectangle r); 39 | 40 | int getClipX(); 41 | 42 | int getClipY(); 43 | 44 | int getClipWidth(); 45 | 46 | int getClipHeight(); 47 | } 48 | -------------------------------------------------------------------------------- /src/javax/swing/event/HyperlinkListener.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.event; 26 | 27 | 28 | import java.util.EventListener; 29 | 30 | /** 31 | * HyperlinkListener 32 | * 33 | * @author Timothy Prinzing 34 | */ 35 | public interface HyperlinkListener extends EventListener { 36 | 37 | /** 38 | * Called when a hypertext link is updated. 39 | * 40 | * @param e the event responsible for the update 41 | */ 42 | void hyperlinkUpdate(HyperlinkEvent e); 43 | } 44 | -------------------------------------------------------------------------------- /src/javax/swing/event/UndoableEditListener.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.event; 27 | 28 | import javax.swing.undo.*; 29 | 30 | /** 31 | * Interface implemented by a class interested in hearing about 32 | * undoable operations. 33 | * 34 | * @author Ray Ryan 35 | */ 36 | 37 | public interface UndoableEditListener extends java.util.EventListener { 38 | 39 | /** 40 | * An undoable edit happened 41 | */ 42 | void undoableEditHappened(UndoableEditEvent e); 43 | } 44 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/nimbus/SplitPaneVerticalState.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 SplitPaneVerticalState extends State { 32 | SplitPaneVerticalState() { 33 | super("Vertical"); 34 | } 35 | 36 | @Override protected boolean isInState(JComponent c) { 37 | 38 | return c instanceof JSplitPane && (((JSplitPane)c).getOrientation() == 1); 39 | } 40 | } 41 | 42 | -------------------------------------------------------------------------------- /src/org/omg/CORBA/UNSUPPORTED_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 | /** 29 | * One of the PolicyErrorCodes which would be filled if 30 | * the requested Policy is understood to be valid by the 31 | * ORB, but is not currently supported. 32 | * 33 | * @author rip-dev 34 | */ 35 | public interface UNSUPPORTED_POLICY { 36 | /** 37 | * The Error code for PolicyError exception. 38 | */ 39 | final short value = (short) (1L); 40 | }; 41 | -------------------------------------------------------------------------------- /src/org/omg/CORBA/portable/StreamableValue.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 | 27 | package org.omg.CORBA.portable; 28 | 29 | /** 30 | * Defines the base type for all non-boxed IDL valuetypes 31 | * that are not custom marshaled. 32 | * 33 | * All value types implement ValueBase either directly or 34 | * indirectly by implementing either the 35 | * StreamableValue or CustomValue interface. 36 | * 37 | * @author OMG 38 | */ 39 | public interface StreamableValue extends Streamable, ValueBase { 40 | 41 | } 42 | -------------------------------------------------------------------------------- /src/org/omg/PortableInterceptor/LOCATION_FORWARD.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableInterceptor; 2 | 3 | 4 | /** 5 | * org/omg/PortableInterceptor/LOCATION_FORWARD.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 9 | */ 10 | 11 | public interface LOCATION_FORWARD 12 | { 13 | 14 | /** 15 | * Indicates a LocationForward reply status. One possible value for 16 | * RequestInfo.reply_status. 17 | * @see RequestInfo#reply_status 18 | * @see SUCCESSFUL 19 | * @see SYSTEM_EXCEPTION 20 | * @see USER_EXCEPTION 21 | * @see TRANSPORT_RETRY 22 | */ 23 | public static final short value = (short)(3); 24 | } 25 | -------------------------------------------------------------------------------- /src/org/omg/PortableInterceptor/SYSTEM_EXCEPTION.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableInterceptor; 2 | 3 | 4 | /** 5 | * org/omg/PortableInterceptor/SYSTEM_EXCEPTION.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 9 | */ 10 | 11 | public interface SYSTEM_EXCEPTION 12 | { 13 | 14 | /** 15 | * Indicates a SystemException reply status. One possible value for 16 | * RequestInfo.reply_status. 17 | * @see RequestInfo#reply_status 18 | * @see SUCCESSFUL 19 | * @see USER_EXCEPTION 20 | * @see LOCATION_FORWARD 21 | * @see TRANSPORT_RETRY 22 | */ 23 | public static final short value = (short)(1); 24 | } 25 | -------------------------------------------------------------------------------- /src/org/omg/PortableInterceptor/TRANSPORT_RETRY.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableInterceptor; 2 | 3 | 4 | /** 5 | * org/omg/PortableInterceptor/TRANSPORT_RETRY.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableInterceptor/Interceptors.idl 8 | * Monday, June 27, 2011 12:42:32 AM GMT-08:00 9 | */ 10 | 11 | public interface TRANSPORT_RETRY 12 | { 13 | 14 | /** 15 | * Indicates a Transport Retry reply status. One possible value for 16 | * RequestInfo.reply_status. 17 | * @see RequestInfo#reply_status 18 | * @see SUCCESSFUL 19 | * @see SYSTEM_EXCEPTION 20 | * @see USER_EXCEPTION 21 | * @see LOCATION_FORWARD 22 | */ 23 | public static final short value = (short)(4); 24 | } 25 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/ServantRetentionPolicyOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/ServantRetentionPolicyOperations.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 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 ServantRetentionPolicyOperations extends org.omg.CORBA.PolicyOperations 17 | { 18 | 19 | /** 20 | * specifies the policy value 21 | */ 22 | org.omg.PortableServer.ServantRetentionPolicyValue value (); 23 | } // interface ServantRetentionPolicyOperations 24 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/PortableActivationIDL/IIOP_CLEAR_TEXT.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.PortableActivationIDL; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/PortableActivationIDL/IIOP_CLEAR_TEXT.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public interface IIOP_CLEAR_TEXT 12 | { 13 | 14 | /** Possible values for endpointType argument on Server.getEndpoint() 15 | * If you change the value of this constant then update 16 | * core.EndPoint accordingly. It has a duplicate definition 17 | * to avoid a compilation dependency. 18 | */ 19 | public static final String value = "IIOP_CLEAR_TEXT"; 20 | } 21 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/ReturnTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | package com.sun.source.tree; 27 | 28 | /** 29 | * A tree node for a 'return' statement. 30 | * 31 | * For example: 32 | *
33 |  *   return;
34 |  *   return expression;
35 |  * 
36 | * 37 | * @jls section 14.17 38 | * 39 | * @author Peter von der Ahé 40 | * @author Jonathan Gibbons 41 | * @since 1.6 42 | */ 43 | public interface ReturnTree extends StatementTree { 44 | ExpressionTree getExpression(); 45 | } 46 | -------------------------------------------------------------------------------- /src/javax/lang/model/element/QualifiedNameable.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 javax.lang.model.element; 27 | 28 | /** 29 | * A mixin interface for an element that has a qualified name. 30 | * 31 | * @author Joseph D. Darcy 32 | * @since 1.7 33 | */ 34 | public interface QualifiedNameable extends Element { 35 | /** 36 | * Returns the fully qualified name of an element. 37 | * 38 | * @return the fully qualified name of an element 39 | */ 40 | Name getQualifiedName(); 41 | } 42 | -------------------------------------------------------------------------------- /src/javax/lang/model/type/PrimitiveType.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 primitive type. These include 31 | * {@code boolean}, {@code byte}, {@code short}, {@code int}, 32 | * {@code long}, {@code char}, {@code float}, and {@code double}. 33 | * 34 | * @author Joseph D. Darcy 35 | * @author Scott Seligman 36 | * @author Peter von der Ahé 37 | * @since 1.6 38 | */ 39 | public interface PrimitiveType extends TypeMirror { 40 | } 41 | -------------------------------------------------------------------------------- /src/javax/management/loading/PrivateClassLoader.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2002, 2007, 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.management.loading; 27 | 28 | /** 29 | * Marker interface indicating that a ClassLoader should not be added 30 | * to the {@link ClassLoaderRepository}. When a ClassLoader is 31 | * registered as an MBean in the MBean server, it is added to the 32 | * MBean server's ClassLoaderRepository unless it implements this 33 | * interface. 34 | * 35 | * @since 1.5 36 | */ 37 | public interface PrivateClassLoader {} 38 | -------------------------------------------------------------------------------- /src/javax/xml/stream/events/Comment.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 | * An interface for comment events 33 | * 34 | * @version 1.0 35 | * @author Copyright (c) 2009 by Oracle Corporation. All Rights Reserved. 36 | * @since 1.6 37 | */ 38 | public interface Comment extends XMLEvent { 39 | 40 | /** 41 | * Return the string data of the comment, returns empty string if it 42 | * does not exist 43 | */ 44 | public String getText(); 45 | } 46 | -------------------------------------------------------------------------------- /src/org/omg/CORBA/VM_NONE.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1998, 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 | package org.omg.CORBA; 27 | 28 | /** 29 | * Defines the code used to represent the one of the values of a value type 30 | * in a typecode. 31 | * 32 | * @author OMG 33 | * @see org.omg.CORBA.TypeCode 34 | * @since JDK1.2 35 | */ 36 | 37 | 38 | public interface VM_NONE { 39 | /** 40 | * The value representing the value type in a typecode as per 41 | * CORBA 2.3 spec. 42 | */ 43 | final short value = (short) (0L); 44 | } 45 | -------------------------------------------------------------------------------- /src/org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCode.java: -------------------------------------------------------------------------------- 1 | package org.omg.DynamicAny.DynAnyFactoryPackage; 2 | 3 | 4 | /** 5 | * org/omg/DynamicAny/DynAnyFactoryPackage/InconsistentTypeCode.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/DynamicAny/DynamicAny.idl 8 | * Monday, June 27, 2011 12:42:34 AM GMT-08:00 9 | */ 10 | 11 | public final class InconsistentTypeCode extends org.omg.CORBA.UserException 12 | { 13 | 14 | public InconsistentTypeCode () 15 | { 16 | super(InconsistentTypeCodeHelper.id()); 17 | } // ctor 18 | 19 | 20 | public InconsistentTypeCode (String $reason) 21 | { 22 | super(InconsistentTypeCodeHelper.id() + " " + $reason); 23 | } // ctor 24 | 25 | } // class InconsistentTypeCode 26 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/copyobject/ReflectiveCopyException.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 | package com.sun.corba.se.spi.copyobject ; 26 | 27 | public class ReflectiveCopyException extends Exception { 28 | public ReflectiveCopyException() 29 | { 30 | super() ; 31 | } 32 | 33 | public ReflectiveCopyException( String msg ) 34 | { 35 | super( msg ) ; 36 | } 37 | 38 | public ReflectiveCopyException( String msg, Throwable t ) 39 | { 40 | super( msg, t ) ; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/transport/ReadTimeoutsFactory.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.transport ; 27 | 28 | import com.sun.corba.se.spi.transport.ReadTimeouts; 29 | 30 | public interface ReadTimeoutsFactory { 31 | // create transport read timeouts 32 | public ReadTimeouts create(int initial_wait_time, 33 | int max_wait_time, 34 | int max_giop_hdr_wait_time, 35 | int backoff_percent_factor); 36 | } 37 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/ExpressionStatementTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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 | package com.sun.source.tree; 27 | 28 | /** 29 | * A tree node for an expression statement. 30 | * 31 | * For example: 32 | *
33 |  *   expression ;
34 |  * 
35 | * 36 | * @jls section 14.8 37 | * 38 | * @author Peter von der Ahé 39 | * @author Jonathan Gibbons 40 | * @since 1.6 41 | */ 42 | public interface ExpressionStatementTree extends StatementTree { 43 | ExpressionTree getExpression(); 44 | } 45 | -------------------------------------------------------------------------------- /src/java/awt/event/AdjustmentListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1996, 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 | package java.awt.event; 27 | 28 | import java.util.EventListener; 29 | 30 | /** 31 | * The listener interface for receiving adjustment events. 32 | * 33 | * @author Amy Fowler 34 | * @since 1.1 35 | */ 36 | public interface AdjustmentListener extends EventListener { 37 | 38 | /** 39 | * Invoked when the value of the adjustable has changed. 40 | */ 41 | public void adjustmentValueChanged(AdjustmentEvent e); 42 | 43 | } 44 | -------------------------------------------------------------------------------- /src/java/beans/ExceptionListener.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 | package java.beans; 26 | 27 | /** 28 | * An ExceptionListener is notified of internal exceptions. 29 | * 30 | * @since 1.4 31 | * 32 | * @author Philip Milne 33 | */ 34 | public interface ExceptionListener { 35 | /** 36 | * This method is called when a recoverable exception has 37 | * been caught. 38 | * 39 | * @param e The exception that was caught. 40 | * 41 | */ 42 | public void exceptionThrown(Exception e); 43 | } 44 | -------------------------------------------------------------------------------- /src/javax/swing/event/CaretListener.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 | package javax.swing.event; 26 | 27 | 28 | import java.util.EventListener; 29 | 30 | /** 31 | * Listener for changes in the caret position of a text 32 | * component. 33 | * 34 | * @author Timothy Prinzing 35 | */ 36 | public interface CaretListener extends EventListener { 37 | 38 | /** 39 | * Called when the caret position is updated. 40 | * 41 | * @param e the caret event 42 | */ 43 | void caretUpdate(CaretEvent e); 44 | } 45 | -------------------------------------------------------------------------------- /src/javax/swing/event/MouseInputListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1998, 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.event; 27 | 28 | import java.awt.event.MouseListener; 29 | import java.awt.event.MouseMotionListener; 30 | 31 | /** 32 | * A listener implementing all the methods in both the {@code MouseListener} and 33 | * {@code MouseMotionListener} interfaces. 34 | * 35 | * @see MouseInputAdapter 36 | * @author Philip Milne 37 | */ 38 | 39 | public interface MouseInputListener extends MouseListener, MouseMotionListener { 40 | } 41 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/nimbus/TextAreaNotInScrollPaneState.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 TextAreaNotInScrollPaneState extends State { 32 | TextAreaNotInScrollPaneState() { 33 | super("NotInScrollPane"); 34 | } 35 | 36 | @Override protected boolean isInState(JComponent c) { 37 | 38 | return !(c.getParent() instanceof javax.swing.JViewport); 39 | } 40 | } 41 | 42 | -------------------------------------------------------------------------------- /src/org/omg/PortableServer/ImplicitActivationPolicyOperations.java: -------------------------------------------------------------------------------- 1 | package org.omg.PortableServer; 2 | 3 | 4 | /** 5 | * org/omg/PortableServer/ImplicitActivationPolicyOperations.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/org/omg/PortableServer/poa.idl 8 | * Monday, June 27, 2011 12:42:30 AM GMT-08:00 9 | */ 10 | 11 | 12 | /** 13 | * This policy specifies whether implicit activation 14 | * of servants is supported in the created POA. 15 | */ 16 | public interface ImplicitActivationPolicyOperations extends org.omg.CORBA.PolicyOperations 17 | { 18 | 19 | /** 20 | * specifies the policy value 21 | */ 22 | org.omg.PortableServer.ImplicitActivationPolicyValue value (); 23 | } // interface ImplicitActivationPolicyOperations 24 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/PortableActivationIDL/EndPointInfo.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.PortableActivationIDL; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/PortableActivationIDL/EndPointInfo.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | public final class EndPointInfo implements org.omg.CORBA.portable.IDLEntity 12 | { 13 | public String endpointType = null; 14 | public int port = (int)0; 15 | 16 | public EndPointInfo () 17 | { 18 | } // ctor 19 | 20 | public EndPointInfo (String _endpointType, int _port) 21 | { 22 | endpointType = _endpointType; 23 | port = _port; 24 | } // ctor 25 | 26 | } // class EndPointInfo 27 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/PortableActivationIDL/ServerManager.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.PortableActivationIDL; 2 | 3 | 4 | /** 5 | * com/sun/corba/se/PortableActivationIDL/ServerManager.java . 6 | * Generated by the IDL-to-Java compiler (portable), version "3.2" 7 | * from ../../../../src/share/classes/com/sun/corba/se/PortableActivationIDL/activation.idl 8 | * Monday, June 27, 2011 12:43:31 AM GMT-08:00 9 | */ 10 | 11 | 12 | /** Interface used to combine the Activator and Locator when both are 13 | * implemented together in the same process, as is currently the case 14 | * for our implementation. 15 | */ 16 | public interface ServerManager extends ServerManagerOperations, com.sun.corba.se.PortableActivationIDL.Activator, com.sun.corba.se.PortableActivationIDL.Locator 17 | { 18 | } // interface ServerManager 19 | -------------------------------------------------------------------------------- /src/com/sun/mirror/type/package-info.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 | /** 27 | * Interfaces used to model types. A type is represented by the 28 | * appropriate subinterface of {@link com.sun.mirror.type.TypeMirror}. 29 | * 30 | *

The {@code apt} tool and its associated API have been 31 | * superseded by the standardized annotation processing API. The 32 | * replacement for the functionality in this package is {@link 33 | * javax.lang.model.type}. 34 | * 35 | * @since 1.5 36 | */ 37 | package com.sun.mirror.type; 38 | -------------------------------------------------------------------------------- /src/javax/sound/midi/MidiDeviceReceiver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 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.sound.midi; 27 | 28 | /** 29 | *

{@code MidiDeviceReceiver} is a {@code Receiver} which represents 30 | * a MIDI input connector of a {@code MidiDevice} 31 | * (see {@link MidiDevice#getReceiver()}). 32 | * 33 | * @since 1.7 34 | */ 35 | public interface MidiDeviceReceiver extends Receiver { 36 | /** Obtains a MidiDevice object which is an owner of this Receiver. 37 | */ 38 | public MidiDevice getMidiDevice(); 39 | } 40 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/impl/io/TypeMismatchException.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 | * Licensed Materials - Property of IBM 27 | * RMI-IIOP v1.0 28 | * Copyright IBM Corp. 1998 1999 All Rights Reserved 29 | * 30 | */ 31 | 32 | package com.sun.corba.se.impl.io; 33 | 34 | public class TypeMismatchException extends Error 35 | { 36 | public TypeMismatchException() 37 | { 38 | super(); 39 | } 40 | 41 | public TypeMismatchException(String mssg) 42 | { 43 | super(mssg); 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/transport/IORToSocketInfo.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.transport; 27 | 28 | import java.util.List; 29 | 30 | import com.sun.corba.se.spi.ior.IOR; 31 | 32 | public interface IORToSocketInfo 33 | { 34 | /** 35 | * Used to extract socket address information from an IOR. 36 | * 37 | * @param ior. 38 | * 39 | * @return List - a list of SocketInfo. 40 | * 41 | */ 42 | public List getSocketInfo(IOR ior); 43 | } 44 | 45 | // End of file. 46 | -------------------------------------------------------------------------------- /src/com/sun/jmx/snmp/SnmpAckPdu.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 | package com.sun.jmx.snmp; 26 | /** 27 | * Interface to be implemented by PDUs that are acknowledged (eg: 28 | * request, bulk). 29 | *

This API is a Sun Microsystems internal API and is subject 30 | * to change without notice.

31 | * @since 1.5 32 | */ 33 | public interface SnmpAckPdu { 34 | /** 35 | * Returns the PDU to use for the response. 36 | * @return The response PDU. 37 | */ 38 | public SnmpPdu getResponsePdu(); 39 | } 40 | -------------------------------------------------------------------------------- /src/java/awt/peer/FontPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 1996, 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.peer; 27 | 28 | /** 29 | * The peer interface for fonts. This is only a marker interface and not 30 | * used by AWT itself. 31 | * 32 | * The peer interfaces are intended only for use in porting 33 | * the AWT. They are not intended for use by application 34 | * developers, and developers should not implement peers 35 | * nor invoke any of the peer methods directly on the peer 36 | * instances. 37 | */ 38 | public interface FontPeer { 39 | } 40 | -------------------------------------------------------------------------------- /src/java/security/interfaces/RSAKey.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 | package java.security.interfaces; 27 | 28 | import java.math.BigInteger; 29 | 30 | /** 31 | * The interface to an RSA public or private key. 32 | * 33 | * @author Jan Luehe 34 | * 35 | * @see RSAPublicKey 36 | * @see RSAPrivateKey 37 | * 38 | * @since 1.3 39 | */ 40 | 41 | public interface RSAKey { 42 | 43 | /** 44 | * Returns the modulus. 45 | * 46 | * @return the modulus 47 | */ 48 | public BigInteger getModulus(); 49 | } 50 | -------------------------------------------------------------------------------- /src/javax/swing/event/ChangeListener.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.event; 26 | 27 | 28 | import java.util.EventListener; 29 | 30 | 31 | /** 32 | * Defines an object which listens for ChangeEvents. 33 | * 34 | * @author Jeff Dinkins 35 | */ 36 | public interface ChangeListener extends EventListener { 37 | /** 38 | * Invoked when the target of the listener has changed its state. 39 | * 40 | * @param e a ChangeEvent object 41 | */ 42 | void stateChanged(ChangeEvent e); 43 | } 44 | -------------------------------------------------------------------------------- /src/javax/swing/plaf/nimbus/SplitPaneDividerVerticalState.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 SplitPaneDividerVerticalState extends State { 32 | SplitPaneDividerVerticalState() { 33 | super("Vertical"); 34 | } 35 | 36 | @Override protected boolean isInState(JComponent c) { 37 | 38 | return c instanceof JSplitPane && (((JSplitPane)c).getOrientation() == 1); 39 | } 40 | } 41 | 42 | -------------------------------------------------------------------------------- /src/com/sun/corba/se/spi/orbutil/fsm/StateEngineFactory.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.StateEngineImpl ; 29 | 30 | /** 31 | * Factory for creating the standard state machine implementation. 32 | * 33 | * @author Ken Cavanaugh 34 | */ 35 | public class StateEngineFactory { 36 | private StateEngineFactory() {} 37 | 38 | public static StateEngine create() 39 | { 40 | return new StateEngineImpl() ; 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /src/com/sun/mirror/util/package-info.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 | /** 27 | * Utilities to assist in the processing of {@linkplain 28 | * com.sun.mirror.declaration declarations} and {@linkplain 29 | * com.sun.mirror.type types}. 30 | * 31 | *

The {@code apt} tool and its associated API have been superseded 32 | * by the standardized annotation processing API. The replacement for 33 | * the functionality in this package is {@link javax.lang.model.util}. 34 | * 35 | * @since 1.5 36 | */ 37 | package com.sun.mirror.util; 38 | -------------------------------------------------------------------------------- /src/com/sun/source/tree/IdentifierTree.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 com.sun.source.tree; 27 | 28 | import javax.lang.model.element.Name; 29 | 30 | /** 31 | * A tree node for an identifier expression. 32 | * 33 | * For example: 34 | *

35 |  *   name
36 |  * 
37 | * 38 | * @jls section 6.5.6.1 39 | * 40 | * @author Peter von der Ahé 41 | * @author Jonathan Gibbons 42 | * @since 1.6 43 | */ 44 | public interface IdentifierTree extends ExpressionTree { 45 | Name getName(); 46 | } 47 | -------------------------------------------------------------------------------- /src/java/lang/reflect/GenericSignatureFormatError.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 java.lang.reflect; 27 | 28 | 29 | /** 30 | * Thrown when a syntactically malformed signature attribute is 31 | * encountered by a reflective method that needs to interpret the 32 | * generic signature information for a type, method or constructor. 33 | * 34 | * @since 1.5 35 | */ 36 | public class GenericSignatureFormatError extends ClassFormatError { 37 | private static final long serialVersionUID = 6709919147137911034L; 38 | } 39 | --------------------------------------------------------------------------------