├── java ├── awt │ ├── peer │ │ ├── SystemTrayPeer.java │ │ ├── TrayIconPeer.java │ │ ├── FontPeer.java │ │ ├── CanvasPeer.java │ │ ├── PanelPeer.java │ │ ├── CheckboxMenuItemPeer.java │ │ ├── KeyboardFocusManagerPeer.java │ │ ├── PopupMenuPeer.java │ │ ├── ButtonPeer.java │ │ ├── MenuComponentPeer.java │ │ ├── MenuPeer.java │ │ ├── LabelPeer.java │ │ ├── MenuBarPeer.java │ │ ├── CheckboxPeer.java │ │ └── ScrollbarPeer.java │ ├── Conditional.java │ ├── PrintGraphics.java │ ├── MenuContainer.java │ ├── event │ │ └── AdjustmentListener.java │ └── color │ │ └── ProfileDataException.java ├── util │ ├── EventListener.java │ ├── zip │ │ └── ZStreamRef.java │ └── concurrent │ │ └── ScheduledFuture.java ├── lang │ ├── ref │ │ └── FinalReference.java │ ├── reflect │ │ ├── Type.java │ │ ├── GenericSignatureFormatError.java │ │ └── MalformedParameterizedTypeException.java │ ├── Iterable.java │ ├── StringValue.java │ └── Override.java ├── security │ ├── interfaces │ │ └── RSAKey.java │ └── acl │ │ └── AclNotFoundException.java ├── nio │ └── channels │ │ └── ByteChannel.java └── net │ └── SocketAddress.java ├── com └── sun │ ├── corba │ └── se │ │ ├── spi │ │ ├── ior │ │ │ ├── MakeImmutable.java │ │ │ ├── ObjectId.java │ │ │ ├── WriteContents.java │ │ │ ├── iiop │ │ │ │ ├── RequestPartitioningComponent.java │ │ │ │ ├── ORBTypeComponent.java │ │ │ │ ├── JavaCodebaseComponent.java │ │ │ │ ├── IIOPAddress.java │ │ │ │ ├── MaxStreamFormatVersionComponent.java │ │ │ │ ├── AlternateIIOPAddressComponent.java │ │ │ │ └── CodeSetsComponent.java │ │ │ ├── Writeable.java │ │ │ └── TaggedComponentFactoryFinder.java │ │ ├── orbutil │ │ │ ├── closure │ │ │ │ ├── Closure.java │ │ │ │ └── ClosureFactory.java │ │ │ ├── threadpool │ │ │ │ ├── NoSuchThreadPoolException.java │ │ │ │ └── NoSuchWorkQueueException.java │ │ │ ├── fsm │ │ │ │ ├── InputImpl.java │ │ │ │ ├── GuardBase.java │ │ │ │ ├── ActionBase.java │ │ │ │ └── StateEngineFactory.java │ │ │ └── proxy │ │ │ │ └── CompositeInvocationHandler.java │ │ ├── transport │ │ │ ├── ReadTimeoutsFactory.java │ │ │ ├── CorbaConnectionCache.java │ │ │ ├── SocketOrChannelAcceptor.java │ │ │ ├── ReadTimeouts.java │ │ │ ├── IORToSocketInfo.java │ │ │ └── SocketInfo.java │ │ ├── legacy │ │ │ ├── connection │ │ │ │ └── Connection.java │ │ │ └── interceptor │ │ │ │ ├── UnknownType.java │ │ │ │ └── IORInfoExt.java │ │ ├── oa │ │ │ └── OADestroyed.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 │ │ ├── logging │ │ │ └── LogWrapperFactory.java │ │ ├── protocol │ │ │ ├── CorbaClientDelegate.java │ │ │ ├── LocalClientRequestDispatcherFactory.java │ │ │ └── ClientDelegateFactory.java │ │ ├── encoding │ │ │ └── CorbaInputObject.java │ │ ├── copyobject │ │ │ ├── ObjectCopierFactory.java │ │ │ └── ReflectiveCopyException.java │ │ ├── orb │ │ │ ├── Operation.java │ │ │ └── ParserData.java │ │ ├── resolver │ │ │ └── LocalResolver.java │ │ └── monitoring │ │ │ └── MonitoredObjectFactory.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 │ │ │ │ ├── KeyAddr.java │ │ │ │ ├── ProfileAddr.java │ │ │ │ ├── ReferenceAddr.java │ │ │ │ └── LocateReplyOrReplyMessage.java │ │ │ └── RequestCanceledException.java │ │ ├── encoding │ │ │ ├── MarkAndResetHandler.java │ │ │ └── RestorableInputStream.java │ │ ├── presentation │ │ │ └── rmi │ │ │ │ └── IDLTypeException.java │ │ ├── oa │ │ │ └── NullServantImpl.java │ │ ├── util │ │ │ └── SUNVMCID.java │ │ ├── legacy │ │ │ └── connection │ │ │ │ └── USLPort.java │ │ ├── naming │ │ │ └── namingutil │ │ │ │ └── NamingConstants.java │ │ ├── monitoring │ │ │ └── MonitoredObjectFactoryImpl.java │ │ └── orb │ │ │ └── PropertyOnlyDataCollector.java │ │ ├── internal │ │ ├── POA │ │ │ └── POAORB.java │ │ ├── io │ │ │ └── ObjectStreamClass.java │ │ ├── corba │ │ │ └── ORBSingleton.java │ │ ├── Interceptors │ │ │ └── PIORB.java │ │ └── iiop │ │ │ └── ORB.java │ │ ├── PortableActivationIDL │ │ ├── Locator.java │ │ ├── Activator.java │ │ ├── Repository.java │ │ ├── ORBProxy.java │ │ ├── ServerProxy.java │ │ ├── InitialNameService.java │ │ ├── InvalidORBid.java │ │ ├── NoSuchEndPoint.java │ │ └── ORBPortInfo.java │ │ └── pept │ │ └── transport │ │ ├── ReaderThread.java │ │ ├── ListenerThread.java │ │ ├── ByteBufferPool.java │ │ ├── InboundConnectionCache.java │ │ ├── OutboundConnectionCache.java │ │ └── Selector.java │ ├── javadoc │ ├── ConstructorDoc.java │ └── AnnotationTypeDoc.java │ ├── jmx │ ├── remote │ │ └── internal │ │ │ └── Unmarshal.java │ └── snmp │ │ ├── internal │ │ └── SnmpModelLcd.java │ │ └── IPAcl │ │ ├── ParseError.java │ │ └── JDMIpV6Address.java │ ├── java │ └── swing │ │ └── plaf │ │ ├── windows │ │ └── WindowsSeparatorUI.java │ │ └── nimbus │ │ ├── InnerGlowEffect.java │ │ ├── OuterGlowEffect.java │ │ ├── ComboBoxEditableState.java │ │ ├── SliderArrowShapeState.java │ │ ├── SplitPaneVerticalState.java │ │ ├── ProgressBarFinishedState.java │ │ ├── SliderSliderThumbArrowShapeState.java │ │ ├── SliderSliderTrackArrowShapeState.java │ │ ├── TextAreaNotInScrollPaneState.java │ │ ├── ProgressBarIndeterminateState.java │ │ ├── ToolBarEastState.java │ │ ├── ToolBarWestState.java │ │ ├── ToolBarNorthState.java │ │ ├── ToolBarSouthState.java │ │ ├── InternalFrameWindowFocusedState.java │ │ └── SplitPaneSplitPaneDividerVerticalState.java │ ├── imageio │ └── plugins │ │ └── common │ │ └── I18N.java │ ├── mirror │ ├── apt │ │ └── AnnotationProcessorListener.java │ ├── declaration │ │ ├── ConstructorDeclaration.java │ │ └── EnumConstantDeclaration.java │ └── type │ │ ├── ReferenceType.java │ │ ├── VoidType.java │ │ ├── EnumType.java │ │ └── AnnotationType.java │ └── source │ ├── util │ ├── package-info.java │ └── TaskListener.java │ └── tree │ ├── package-info.java │ ├── ErroneousTree.java │ ├── StatementTree.java │ └── ExpressionTree.java ├── javax ├── xml │ ├── stream │ │ ├── events │ │ │ ├── EndDocument.java │ │ │ ├── Comment.java │ │ │ └── ProcessingInstruction.java │ │ └── EventFilter.java │ ├── ws │ │ ├── wsaddressing │ │ │ └── package-info.java │ │ ├── handler │ │ │ └── LogicalHandler.java │ │ ├── http │ │ │ └── HTTPBinding.java │ │ └── AsyncHandler.java │ ├── bind │ │ ├── GetPropertyAction.java │ │ ├── DataBindingException.java │ │ └── NotIdentifiableEvent.java │ └── crypto │ │ └── Data.java ├── swing │ ├── plaf │ │ ├── LabelUI.java │ │ ├── TableUI.java │ │ ├── SliderUI.java │ │ ├── ToolTipUI.java │ │ ├── PanelUI.java │ │ ├── ScrollBarUI.java │ │ ├── TableHeaderUI.java │ │ ├── ViewportUI.java │ │ ├── ProgressBarUI.java │ │ ├── RootPaneUI.java │ │ ├── ScrollPaneUI.java │ │ ├── DesktopIconUI.java │ │ ├── DesktopPaneUI.java │ │ ├── InternalFrameUI.java │ │ ├── SpinnerUI.java │ │ ├── SeparatorUI.java │ │ ├── ToolBarUI.java │ │ ├── MenuBarUI.java │ │ ├── ColorChooserUI.java │ │ ├── MenuItemUI.java │ │ ├── ButtonUI.java │ │ ├── InputMapUIResource.java │ │ └── ActionMapUIResource.java │ ├── SwingHeavyWeight.java │ ├── GraphicsWrapper.java │ ├── event │ │ ├── HyperlinkListener.java │ │ ├── UndoableEditListener.java │ │ ├── MouseInputListener.java │ │ ├── CaretListener.java │ │ └── ChangeListener.java │ └── text │ │ └── DefaultTextUI.java ├── lang │ └── model │ │ └── type │ │ ├── NullType.java │ │ ├── ReferenceType.java │ │ └── PrimitiveType.java ├── annotation │ └── Resources.java └── management │ └── DescriptorRead.java ├── launcher ├── jli_util.h ├── 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 ├── SERVANT_RETENTION_POLICY_ID.java ├── REQUEST_PROCESSING_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 ├── CurrentPackage │ └── NoContext.java ├── RequestProcessingPolicy.java ├── IdAssignmentPolicy.java ├── IdUniquenessPolicy.java ├── POAManager.java ├── ThreadPolicyOperations.java ├── POAManagerPackage │ └── AdapterInactive.java └── LifespanPolicyOperations.java ├── IOP ├── ENCODING_CDR_ENCAPS.java ├── TAG_POLICIES.java ├── CodeSets.java ├── TransactionService.java ├── CodecPackage │ ├── TypeMismatch.java │ ├── FormatMismatch.java │ └── InvalidTypeForEncoding.java ├── CodecFactory.java ├── RMICustomMaxStreamFormat.java └── CodecFactoryPackage │ └── UnknownEncoding.java ├── DynamicAny ├── DynSequence.java ├── DynEnum.java ├── DynValueCommon.java ├── DynStruct.java ├── DynAnyPackage │ ├── InvalidValue.java │ └── TypeMismatch.java ├── DynFixed.java └── DynArray.java ├── CORBA ├── BAD_POLICY.java ├── BAD_POLICY_TYPE.java ├── portable │ ├── IDLEntity.java │ └── StreamableValue.java ├── VM_NONE.java ├── UNSUPPORTED_POLICY.java ├── VM_CUSTOM.java ├── VM_ABSTRACT.java └── IRObject.java ├── Messaging └── SYNC_WITH_TRANSPORT.java ├── CosNaming ├── NameComponent.java ├── NamingContextPackage │ ├── NotEmpty.java │ ├── InvalidName.java │ └── AlreadyBound.java └── NamingContextExtPackage │ └── InvalidAddress.java └── Dynamic └── Parameter.java /java/awt/peer/SystemTrayPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. Use is 3 | * subject to license terms. 4 | */ 5 | 6 | package java.awt.peer; 7 | 8 | import java.awt.TrayIcon; 9 | import java.awt.Dimension; 10 | 11 | public interface SystemTrayPeer { 12 | Dimension getTrayIconSize(); 13 | } 14 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/MakeImmutable.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MakeImmutable.java 1.5 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.ior ; 9 | 10 | public interface MakeImmutable { 11 | void makeImmutable() ; 12 | } 13 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/orbutil/threadpool/TimeoutException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 4 | */ 5 | 6 | package com.sun.corba.se.impl.orbutil.threadpool; 7 | 8 | public class TimeoutException extends Exception 9 | { 10 | } 11 | 12 | // End of file. 13 | 14 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orbutil/closure/Closure.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Closure.java 1.9 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.orbutil.closure ; 9 | 10 | public interface Closure { 11 | public Object evaluate() ; 12 | } 13 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orbutil/threadpool/NoSuchThreadPoolException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 4 | */ 5 | 6 | package com.sun.corba.se.spi.orbutil.threadpool; 7 | 8 | public class NoSuchThreadPoolException extends Exception 9 | { 10 | } 11 | 12 | // End of file. 13 | 14 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orbutil/threadpool/NoSuchWorkQueueException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 4 | */ 5 | 6 | package com.sun.corba.se.spi.orbutil.threadpool; 7 | 8 | public class NoSuchWorkQueueException extends Exception 9 | { 10 | } 11 | 12 | // End of file. 13 | 14 | -------------------------------------------------------------------------------- /javax/xml/stream/events/EndDocument.java: -------------------------------------------------------------------------------- 1 | package javax.xml.stream.events; 2 | 3 | /** 4 | * A marker interface for the end of the document 5 | * 6 | * @version 1.0 7 | * @author Copyright (c) 2009 by Oracle Corporation. All Rights Reserved. 8 | * @since 1.6 9 | */ 10 | public interface EndDocument extends XMLEvent { 11 | /** 12 | * No methods are defined in this interface. 13 | */ 14 | } 15 | -------------------------------------------------------------------------------- /javax/xml/ws/wsaddressing/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 4 | */ 5 | 6 | 7 | @javax.xml.bind.annotation.XmlSchema(namespace=W3CEndpointReference.NS, 8 | location="http://www.w3.org/2006/03/addressing/ws-addr.xsd") 9 | package javax.xml.ws.wsaddressing; 10 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/ObjectId.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ObjectId.java 1.6 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.ior; 9 | 10 | /** 11 | * @author Ken Cavanaugh 12 | */ 13 | public interface ObjectId extends Writeable 14 | { 15 | public byte[] getId() ; 16 | } 17 | -------------------------------------------------------------------------------- /java/util/EventListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)EventListener.java 1.15 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.util; 9 | 10 | /** 11 | * A tagging interface that all event listener interfaces must extend. 12 | * @since JDK1.1 13 | */ 14 | public interface EventListener { 15 | } 16 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/transport/ReadTimeoutsFactory.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.spi.transport ; 2 | 3 | import com.sun.corba.se.spi.transport.ReadTimeouts; 4 | 5 | public interface ReadTimeoutsFactory { 6 | // create transport read timeouts 7 | public ReadTimeouts create(int initial_wait_time, 8 | int max_wait_time, 9 | int max_giop_hdr_wait_time, 10 | int backoff_percent_factor); 11 | } 12 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/WriteContents.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)WriteContents.java 1.5 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.ior; 9 | 10 | import org.omg.CORBA_2_3.portable.OutputStream ; 11 | 12 | public interface WriteContents { 13 | void writeContents( OutputStream os ) ; 14 | } 15 | -------------------------------------------------------------------------------- /javax/xml/stream/events/Comment.java: -------------------------------------------------------------------------------- 1 | package javax.xml.stream.events; 2 | 3 | /** 4 | * An interface for comment events 5 | * 6 | * @version 1.0 7 | * @author Copyright (c) 2009 by Oracle Corporation. All Rights Reserved. 8 | * @since 1.6 9 | */ 10 | public interface Comment extends XMLEvent { 11 | 12 | /** 13 | * Return the string data of the comment, returns empty string if it 14 | * does not exist 15 | */ 16 | public String getText(); 17 | } 18 | -------------------------------------------------------------------------------- /javax/swing/plaf/LabelUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)LabelUI.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | /** 11 | * Pluggable look and feel interface for JLabel. 12 | * 13 | * @version 1.14 03/23/10 14 | * @author Hans Muller 15 | */ 16 | public abstract class LabelUI extends ComponentUI { 17 | } 18 | -------------------------------------------------------------------------------- /javax/swing/plaf/TableUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)TableUI.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | /** 11 | * Pluggable look and feel interface for JTable. 12 | * 13 | * @version 1.14 03/23/10 14 | * @author Alan Chung 15 | */ 16 | public abstract class TableUI extends ComponentUI { 17 | } 18 | -------------------------------------------------------------------------------- /launcher/jli_util.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)jli_util.h 1.3 10/03/23 3 | * 4 | * Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. 5 | * Use is subject to license terms. 6 | */ 7 | 8 | #ifndef _JLI_UTIL_H 9 | #define _JLI_UTIL_H 10 | 11 | #include 12 | 13 | void *JLI_MemAlloc(size_t size); 14 | void *JLI_MemRealloc(void *ptr, size_t size); 15 | char *JLI_StringDup(const char *s1); 16 | void JLI_MemFree(void *ptr); 17 | 18 | #endif /* _JLI_UTIL_H */ 19 | -------------------------------------------------------------------------------- /com/sun/javadoc/ConstructorDoc.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ConstructorDoc.java 1.11 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.javadoc; 9 | 10 | /** 11 | * Represents a constructor of a java class. 12 | * 13 | * @since 1.2 14 | * @author Robert Field 15 | */ 16 | public interface ConstructorDoc extends ExecutableMemberDoc { 17 | } 18 | -------------------------------------------------------------------------------- /javax/swing/plaf/SliderUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)SliderUI.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | /** 11 | * Pluggable look and feel interface for JSlider. 12 | * 13 | * @version 1.14 03/23/10 14 | * @author Hans Muller 15 | */ 16 | public abstract class SliderUI extends ComponentUI { 17 | } 18 | 19 | -------------------------------------------------------------------------------- /javax/swing/plaf/ToolTipUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ToolTipUI.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | /** 11 | * Pluggable look and feel interface for JToolTip. 12 | * 13 | * @version 1.14 03/23/10 14 | * @author Dave Moore 15 | */ 16 | public abstract class ToolTipUI extends ComponentUI { 17 | } 18 | -------------------------------------------------------------------------------- /javax/swing/plaf/PanelUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)PanelUI.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | 11 | /** 12 | * Pluggable look and feel interface for Panel. 13 | * 14 | * @version 1.10 03/23/10 15 | * @author Steve Wilson 16 | */ 17 | public abstract class PanelUI extends ComponentUI { 18 | } 19 | 20 | -------------------------------------------------------------------------------- /javax/swing/plaf/ScrollBarUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ScrollBarUI.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | /** 11 | * Pluggable look and feel interface for JScrollBar. 12 | * 13 | * @version 1.14 10/03/23 14 | * @author David Kloba 15 | */ 16 | public abstract class ScrollBarUI extends ComponentUI { 17 | } 18 | -------------------------------------------------------------------------------- /launcher/wildcard.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)wildcard.h 1.6 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | #ifndef WILDCARD_H_ 9 | #define WILDCARD_H_ 10 | 11 | #ifdef EXPAND_CLASSPATH_WILDCARDS 12 | const char *JLI_WildcardExpandClasspath(const char *classpath); 13 | #else 14 | #define JLI_WildcardExpandClasspath(s) (s) 15 | #endif 16 | 17 | #endif /* include guard */ 18 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/orbutil/graph/Graph.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Graph.java 1.5 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.orbutil.graph ; 9 | 10 | import java.util.Set ; 11 | 12 | public interface Graph extends Set // Set 13 | { 14 | NodeData getNodeData( Node node ) ; 15 | 16 | Set /* Set */ getRoots() ; 17 | } 18 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/transport/CorbaConnectionCache.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)CorbaConnectionCache.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.transport; 9 | 10 | /** 11 | * @author Harold Carr 12 | */ 13 | public interface CorbaConnectionCache 14 | { 15 | public String getMonitoringName(); 16 | } 17 | 18 | // End of file. 19 | -------------------------------------------------------------------------------- /javax/swing/plaf/TableHeaderUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)TableHeaderUI.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | /** 11 | * Pluggable look and feel interface for JTableHeader. 12 | * 13 | * @version 1.14 03/23/10 14 | * @author Alan Chung 15 | */ 16 | public abstract class TableHeaderUI extends ComponentUI { 17 | } 18 | -------------------------------------------------------------------------------- /javax/swing/plaf/ViewportUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ViewportUI.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | 11 | /** 12 | * Pluggable look and feel interface for JViewport. 13 | * 14 | * @version 1.1 05/01/98 15 | * @author Rich Schiavi 16 | */ 17 | public abstract class ViewportUI extends ComponentUI { 18 | } 19 | 20 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orbutil/fsm/InputImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)InputImpl.java 1.9 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.orbutil.fsm ; 9 | 10 | import com.sun.corba.se.impl.orbutil.fsm.NameBase ; 11 | 12 | public class InputImpl extends NameBase implements Input { 13 | public InputImpl( String name ) { super( name ) ; } 14 | } 15 | -------------------------------------------------------------------------------- /javax/swing/plaf/ProgressBarUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ProgressBarUI.java 1.15 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | 11 | /** 12 | * Pluggable look and feel interface for JProgressBar. 13 | * 14 | * @version 1.15 03/23/10 15 | * @author Rob Davis 16 | */ 17 | public abstract class ProgressBarUI extends ComponentUI { 18 | } 19 | -------------------------------------------------------------------------------- /javax/swing/plaf/RootPaneUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)RootPaneUI.java 1.9 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | /** 11 | * Pluggable look and feel interface for JRootPane. 12 | * 13 | * @version 1.9 03/23/10 14 | * @author Scott Violet 15 | * @since 1.3 16 | */ 17 | public abstract class RootPaneUI extends ComponentUI { 18 | } 19 | -------------------------------------------------------------------------------- /javax/swing/plaf/ScrollPaneUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ScrollPaneUI.java 1.19 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | 11 | /** 12 | * Pluggable look and feel interface for JScrollPane. 13 | * 14 | * @version 1.19 03/23/10 15 | * @author Hans Muller 16 | */ 17 | 18 | public abstract class ScrollPaneUI extends ComponentUI { 19 | } 20 | -------------------------------------------------------------------------------- /javax/xml/ws/handler/LogicalHandler.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 4 | */ 5 | 6 | package javax.xml.ws.handler; 7 | 8 | /** The LogicalHandler extends 9 | * Handler to provide typesafety for the message context parameter. 10 | * 11 | * @since JAX-WS 2.0 12 | **/ 13 | public interface LogicalHandler extends Handler { 14 | } 15 | -------------------------------------------------------------------------------- /com/sun/corba/se/internal/POA/POAORB.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)POAORB.java 1.120 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.internal.POA; 9 | 10 | /** 11 | * Deprecated class for backward compatibility. 12 | */ 13 | public class POAORB extends com.sun.corba.se.internal.iiop.ORB 14 | { 15 | public POAORB( ) 16 | { 17 | super(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/legacy/connection/Connection.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Connection.java 1.9 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.legacy.connection; 9 | 10 | /** 11 | * This interface represents the connection on which a request is made. 12 | */ 13 | 14 | public interface Connection 15 | { 16 | public java.net.Socket getSocket(); 17 | } 18 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/oa/OADestroyed.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)OADestroyed.java 1.12 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.corba.se.spi.oa; 8 | 9 | /** This exception is thrown when an operation on an ObjectAdapter 10 | * fails because the ObjectAdapter was destroyed during the operation. 11 | */ 12 | public class OADestroyed extends java.lang.Exception { 13 | } 14 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orbutil/fsm/GuardBase.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)GuardBase.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.orbutil.fsm ; 9 | 10 | import com.sun.corba.se.impl.orbutil.fsm.NameBase ; 11 | 12 | public abstract class GuardBase extends NameBase implements Guard { 13 | public GuardBase( String name ) { super( name ) ; } 14 | } 15 | -------------------------------------------------------------------------------- /javax/swing/SwingHeavyWeight.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)SwingHeavyWeight.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package javax.swing; 8 | 9 | /** 10 | * An interface used to tag heavy weight components that we want processed 11 | * by Swing's RepaintManager. 12 | * 13 | * @version 1.3 03/23/10 14 | * @author Scott Violet 15 | */ 16 | interface SwingHeavyWeight { 17 | } 18 | -------------------------------------------------------------------------------- /javax/swing/plaf/DesktopIconUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)DesktopIconUI.java 1.13 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | 11 | /** 12 | * Pluggable look and feel interface for JDesktopIcon. 13 | * 14 | * @version 1.13 03/23/10 15 | * @author David Kloba 16 | */ 17 | public abstract class DesktopIconUI extends ComponentUI { 18 | } 19 | 20 | -------------------------------------------------------------------------------- /javax/swing/plaf/DesktopPaneUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)DesktopPaneUI.java 1.13 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | 11 | /** 12 | * Pluggable look and feel interface for JDesktopPane. 13 | * 14 | * @version 1.13 03/23/10 15 | * @author David Kloba 16 | */ 17 | public abstract class DesktopPaneUI extends ComponentUI { 18 | } 19 | 20 | -------------------------------------------------------------------------------- /javax/swing/plaf/InternalFrameUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)InternalFrameUI.java 1.16 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | /** 11 | * Pluggable look and feel interface for JInternalFrame. 12 | * 13 | * @version 1.16 03/23/10 14 | * @author David Kloba 15 | */ 16 | public abstract class InternalFrameUI extends ComponentUI { 17 | } 18 | 19 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orbutil/fsm/ActionBase.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ActionBase.java 1.6 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.orbutil.fsm ; 9 | 10 | import com.sun.corba.se.impl.orbutil.fsm.NameBase ; 11 | 12 | public abstract class ActionBase extends NameBase implements Action { 13 | public ActionBase( String name ) { super( name ) ; } 14 | } 15 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/orbutil/graph/Node.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Node.java 1.5 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.orbutil.graph ; 9 | 10 | import java.util.Set ; 11 | 12 | /** Node in a graph. 13 | */ 14 | public interface Node 15 | { 16 | /** Get all the children of this node. 17 | */ 18 | Set /* Set */ getChildren() ; 19 | } 20 | -------------------------------------------------------------------------------- /com/sun/corba/se/internal/io/ObjectStreamClass.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ObjectStreamClass.java 1.5 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.internal.io; 9 | 10 | public class ObjectStreamClass { 11 | 12 | /* Find out if the class has a static class initializer */ 13 | private static native boolean hasStaticInitializer(Class cl); 14 | 15 | } 16 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/logging/LogWrapperFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)LogWrapperFactory.java 1.6 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.logging ; 9 | 10 | import java.util.logging.Logger ; 11 | 12 | import com.sun.corba.se.spi.logging.LogWrapperBase ; 13 | 14 | public interface LogWrapperFactory { 15 | LogWrapperBase create( Logger logger ) ; 16 | } 17 | -------------------------------------------------------------------------------- /com/sun/jmx/remote/internal/Unmarshal.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Unmarshal.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.jmx.remote.internal; 9 | 10 | import java.io.IOException; 11 | import java.rmi.MarshalledObject; 12 | 13 | public interface Unmarshal { 14 | public Object get(MarshalledObject mo) 15 | throws IOException, ClassNotFoundException; 16 | } 17 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/protocol/CorbaClientDelegate.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)CorbaClientDelegate.java 1.8 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.protocol; 9 | 10 | public abstract class CorbaClientDelegate 11 | extends org.omg.CORBA_2_3.portable.Delegate 12 | implements com.sun.corba.se.pept.protocol.ClientDelegate 13 | { 14 | } 15 | 16 | // End of file. 17 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/windows/WindowsSeparatorUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)WindowsSeparatorUI.java 1.5 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.java.swing.plaf.windows; 9 | 10 | import javax.swing.plaf.basic.*; 11 | 12 | /** 13 | * Windows Separator. 14 | *

15 | * 16 | * @version 1.5 03/23/10 17 | */ 18 | public class WindowsSeparatorUI extends BasicSeparatorUI { } 19 | -------------------------------------------------------------------------------- /javax/swing/plaf/SpinnerUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)SpinnerUI.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | 11 | /** 12 | * Pluggable look and feel interface for JSpinner 13 | * 14 | * @version 1.7 03/23/10 15 | * @author Hans Muller 16 | * @since 1.4 17 | */ 18 | public abstract class SpinnerUI extends javax.swing.plaf.ComponentUI { 19 | } 20 | 21 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/iiop/RequestPartitioningComponent.java: -------------------------------------------------------------------------------- 1 | /** 2 | * @(#)RequestPartitioningComponent.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.corba.se.spi.ior.iiop; 8 | 9 | import com.sun.corba.se.spi.ior.TaggedComponent; 10 | 11 | public interface RequestPartitioningComponent extends TaggedComponent 12 | { 13 | public int getRequestPartitioningId(); 14 | } 15 | -------------------------------------------------------------------------------- /java/lang/ref/FinalReference.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)FinalReference.java 1.13 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.lang.ref; 9 | 10 | 11 | /* Final references, used to implement finalization */ 12 | 13 | class FinalReference extends Reference { 14 | 15 | public FinalReference(T referent, ReferenceQueue q) { 16 | super(referent, q); 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /javax/swing/plaf/SeparatorUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)SeparatorUI.java 1.13 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | /** 11 | * Pluggable look and feel interface for JSeparator. 12 | * 13 | * @version 1.13 03/23/10 14 | * @author Georges Saab 15 | * @author David Karlton 16 | */ 17 | 18 | public abstract class SeparatorUI extends ComponentUI { 19 | } 20 | 21 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:27 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/iiop/ORBTypeComponent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ORBTypeComponent.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.ior.iiop; 9 | 10 | import com.sun.corba.se.spi.ior.TaggedComponent ; 11 | 12 | /** 13 | * @author Ken Cavanaugh 14 | */ 15 | public interface ORBTypeComponent extends TaggedComponent 16 | { 17 | public int getORBType() ; 18 | } 19 | -------------------------------------------------------------------------------- /launcher/splashscreen.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)splashscreen.h 1.6 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | 9 | int DoSplashLoadMemory(void* pdata, int size); /* requires preloading the file */ 10 | int DoSplashLoadFile(const char* filename); 11 | void DoSplashInit(void); 12 | void DoSplashClose(void); 13 | void DoSplashSetFileJarName(const char* fileName, const char* jarName); 14 | 15 | 16 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:10 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 | -------------------------------------------------------------------------------- /java/awt/peer/TrayIconPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. Use is 3 | * subject to license terms. 4 | */ 5 | 6 | package java.awt.peer; 7 | 8 | import java.awt.TrayIcon; 9 | import java.awt.Dimension; 10 | import java.awt.Point; 11 | 12 | public interface TrayIconPeer { 13 | void dispose(); 14 | void setToolTip(String tooltip); 15 | void updateImage(); 16 | void displayMessage(String caption, String text, String messageType); 17 | void showPopupMenu(int x, int y); 18 | } 19 | -------------------------------------------------------------------------------- /com/sun/corba/se/pept/transport/ReaderThread.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ReaderThread.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.pept.transport; 9 | 10 | /** 11 | * @author Harold Carr 12 | */ 13 | public interface ReaderThread { 14 | public Connection getConnection(); 15 | public void close(); 16 | } 17 | 18 | // End of file. 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/iiop/JavaCodebaseComponent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)JavaCodebaseComponent.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.ior.iiop; 9 | 10 | import com.sun.corba.se.spi.ior.TaggedComponent ; 11 | 12 | /** 13 | * @author Ken Cavanaugh 14 | */ 15 | public interface JavaCodebaseComponent extends TaggedComponent 16 | { 17 | public String getURLs() ; 18 | } 19 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/protocol/LocalClientRequestDispatcherFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)LocalClientRequestDispatcherFactory.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.protocol; 9 | 10 | import com.sun.corba.se.spi.ior.IOR ; 11 | 12 | public interface LocalClientRequestDispatcherFactory { 13 | public LocalClientRequestDispatcher create( int id, IOR ior ) ; 14 | } 15 | 16 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/transport/SocketOrChannelAcceptor.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)SocketOrChannelAcceptor.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.transport; 9 | 10 | import java.net.ServerSocket; 11 | 12 | /** 13 | * @author Harold Carr 14 | */ 15 | public interface SocketOrChannelAcceptor 16 | { 17 | public ServerSocket getServerSocket(); 18 | } 19 | 20 | // End of file. 21 | -------------------------------------------------------------------------------- /java/lang/reflect/Type.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Type.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.lang.reflect; 9 | 10 | /** 11 | * Type is the common superinterface for all types in the Java 12 | * programming language. These include raw types, parameterized types, 13 | * array types, type variables and primitive types. 14 | * 15 | * @since 1.5 16 | */ 17 | 18 | public interface Type { 19 | } 20 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:10 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/pept/transport/ListenerThread.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ListenerThread.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.pept.transport; 9 | 10 | /** 11 | * @author Harold Carr 12 | */ 13 | public interface ListenerThread 14 | { 15 | public Acceptor getAcceptor(); 16 | public void close(); 17 | } 18 | 19 | // End of file. 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/legacy/interceptor/UnknownType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)UnknownType.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.legacy.interceptor; 9 | 10 | public class UnknownType 11 | extends 12 | Exception 13 | { 14 | public UnknownType() 15 | { 16 | super(); 17 | } 18 | 19 | public UnknownType(String msg) 20 | { 21 | super(msg); 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:10 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/encoding/CorbaInputObject.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)CorbaInputObject.java 1.8 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.encoding ; 9 | 10 | import com.sun.corba.se.impl.encoding.CDRInputStream ; 11 | import com.sun.corba.se.pept.encoding.InputObject ; 12 | 13 | public abstract class CorbaInputObject 14 | extends CDRInputStream 15 | implements InputObject 16 | { 17 | } 18 | -------------------------------------------------------------------------------- /javax/swing/plaf/ToolBarUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ToolBarUI.java 1.16 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | import java.awt.Insets; 11 | import javax.swing.JToolBar; 12 | 13 | /** 14 | * Pluggable look and feel interface for JToolBar. 15 | * 16 | * @version 1.16 03/23/10 17 | * @author Georges Saab 18 | */ 19 | 20 | public abstract class ToolBarUI extends ComponentUI { 21 | } 22 | 23 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/transport/ReadTimeouts.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ReadTimeouts.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.transport; 9 | 10 | public interface ReadTimeouts { 11 | public int get_initial_time_to_wait(); 12 | public int get_max_time_to_wait(); 13 | public double get_backoff_factor(); 14 | public int get_max_giop_header_time_to_wait(); 15 | } 16 | 17 | // End of file. 18 | -------------------------------------------------------------------------------- /javax/xml/bind/GetPropertyAction.java: -------------------------------------------------------------------------------- 1 | package javax.xml.bind; 2 | 3 | import java.security.PrivilegedAction; 4 | 5 | /** 6 | * {@link PrivilegedAction} that gets the system property value. 7 | * @author Kohsuke Kawaguchi 8 | */ 9 | final class GetPropertyAction implements PrivilegedAction { 10 | private final String propertyName; 11 | 12 | public GetPropertyAction(String propertyName) { 13 | this.propertyName = propertyName; 14 | } 15 | 16 | public String run() { 17 | return System.getProperty(propertyName); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/copyobject/ReferenceObjectCopierImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ReferenceObjectCopierImpl.java 1.9 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.copyobject ; 9 | 10 | import com.sun.corba.se.spi.copyobject.ObjectCopier ; 11 | 12 | public class ReferenceObjectCopierImpl implements ObjectCopier 13 | { 14 | public Object copy( Object obj ) 15 | { 16 | return obj ; 17 | } 18 | } 19 | 20 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/internal/corba/ORBSingleton.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ORBSingleton.java 1.5 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.internal.corba; 9 | 10 | /** 11 | * 12 | * Deprecated class for backward compatibility. 13 | */ 14 | public class ORBSingleton extends com.sun.corba.se.impl.orb.ORBSingleton 15 | { 16 | public ORBSingleton() 17 | { 18 | super(); 19 | } 20 | } 21 | 22 | // End of file. 23 | 24 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:27 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/imageio/plugins/common/I18N.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)I18N.java 1.4 10/03/23 18:03:43 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.imageio.plugins.common; 9 | 10 | public final class I18N extends I18NImpl { 11 | private final static String resource_name = "iio-plugin.properties"; 12 | public static String getString(String key) { 13 | return getString("com.sun.imageio.plugins.common.I18N", resource_name, key); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/legacy/interceptor/IORInfoExt.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)IORInfoExt.java 1.11 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.legacy.interceptor; 9 | 10 | import com.sun.corba.se.spi.oa.ObjectAdapter; 11 | 12 | public interface IORInfoExt 13 | { 14 | public int getServerPort(String type) 15 | throws 16 | UnknownType; 17 | 18 | public ObjectAdapter getObjectAdapter(); 19 | } 20 | 21 | // End of file. 22 | -------------------------------------------------------------------------------- /com/sun/jmx/snmp/internal/SnmpModelLcd.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)SnmpModelLcd.java 1.12 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.jmx.snmp.internal; 9 | 10 | /** 11 | * An interface to implement when developping customized model configuration datastore. 12 | *

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

14 | * @since 1.5 15 | */ 16 | public interface SnmpModelLcd { 17 | } 18 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:32 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/copyobject/ObjectCopierFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ObjectCopierFactory.java 1.6 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.copyobject ; 9 | 10 | import com.sun.corba.se.spi.orb.ORB ; 11 | 12 | /** ObjectCopier factory interface used for registration. 13 | */ 14 | public interface ObjectCopierFactory { 15 | /** Create a new instance of an ObjectCopier. 16 | */ 17 | ObjectCopier make() ; 18 | } 19 | -------------------------------------------------------------------------------- /java/awt/peer/FontPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)FontPeer.java 1.13 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.awt.peer; 9 | 10 | /** 11 | * The peer interfaces are intended only for use in porting 12 | * the AWT. They are not intended for use by application 13 | * developers, and developers should not implement peers 14 | * nor invoke any of the peer methods directly on the peer 15 | * instances. 16 | */ 17 | public interface FontPeer { 18 | } 19 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/corba/TypeCodeFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)TypeCodeFactory.java 1.16 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.corba; 9 | 10 | public interface TypeCodeFactory { 11 | void setTypeCode(String id, TypeCodeImpl code); 12 | 13 | TypeCodeImpl getTypeCode(String id); 14 | 15 | void setTypeCodeForClass( Class c, TypeCodeImpl tcimpl ) ; 16 | 17 | TypeCodeImpl getTypeCodeForClass( Class c ) ; 18 | } 19 | -------------------------------------------------------------------------------- /com/sun/corba/se/internal/Interceptors/PIORB.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)PIORB.java 1.67 10/03/23 3 | * 4 | * 5 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 6 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 7 | */ 8 | package com.sun.corba.se.internal.Interceptors; 9 | 10 | import com.sun.corba.se.internal.POA.POAORB; 11 | 12 | /** 13 | * Deprecated class for backward compatibility. 14 | */ 15 | public class PIORB 16 | extends POAORB 17 | { 18 | public PIORB() { 19 | super(); 20 | } 21 | } 22 | 23 | // End of file. 24 | 25 | -------------------------------------------------------------------------------- /com/sun/corba/se/internal/iiop/ORB.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ORB.java 1.220 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.internal.iiop; 9 | 10 | /** 11 | * Deprecated class for backward compatibility. 12 | */ 13 | public class ORB extends /* 1.4 value: com.sun.corba.se.internal.corba.ORB */ 14 | com.sun.corba.se.impl.orb.ORBImpl 15 | { 16 | public ORB() 17 | { 18 | super(); 19 | } 20 | } // Class ORB 21 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orb/Operation.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Operation.java 1.8 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.corba.se.spi.orb ; 8 | 9 | /** A generic class representing a function that takes a value and returns 10 | * a value. This is a building block for property parsing. 11 | */ 12 | public interface Operation{ 13 | /** Apply some function to a value and return the result. 14 | */ 15 | Object operate( Object value ) ; 16 | } 17 | -------------------------------------------------------------------------------- /com/sun/mirror/apt/AnnotationProcessorListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)AnnotationProcessorListener.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.mirror.apt; 9 | 10 | /** 11 | * Superinterface for all annotation processor event listeners. 12 | * 13 | * @author Joseph D. Darcy 14 | * @author Scott Seligman 15 | * @version 1.3 10/03/23 16 | * @since 1.5 17 | */ 18 | public interface AnnotationProcessorListener extends java.util.EventListener {} 19 | -------------------------------------------------------------------------------- /com/sun/mirror/declaration/ConstructorDeclaration.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ConstructorDeclaration.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.mirror.declaration; 9 | 10 | 11 | /** 12 | * Represents a constructor of a class or interface. 13 | * 14 | * @author Joe Darcy 15 | * @author Scott Seligman 16 | * @version 1.3 10/03/23 17 | * @since 1.5 18 | */ 19 | 20 | public interface ConstructorDeclaration extends ExecutableDeclaration { 21 | } 22 | -------------------------------------------------------------------------------- /launcher/version_comp.h: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)version_comp.h 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | #ifndef _VERSION_COMP_H 9 | #define _VERSION_COMP_H 10 | 11 | /* 12 | * Function prototypes. 13 | */ 14 | int JLI_ExactVersionId(char *id1, char *id2); 15 | int JLI_PrefixVersionId(char *id1, char *id2); 16 | int JLI_AcceptableRelease(char *release, char *version_string); 17 | int JLI_ValidVersionString(char *version_string); 18 | 19 | #endif /* _VERSION_COMP_H */ 20 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /java/awt/Conditional.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Conditional.java 1.8 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.awt; 9 | 10 | /** 11 | * Conditional is used by the EventDispatchThread's message pumps to 12 | * determine if a given pump should continue to run, or should instead exit 13 | * and yield control to the parent pump. 14 | * 15 | * @version 1.8 03/23/10 16 | * @author David Mendenhall 17 | */ 18 | interface Conditional { 19 | boolean evaluate(); 20 | } 21 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/iiop/IIOPAddress.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)IIOPAddress.java 1.9 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.ior.iiop; 9 | 10 | import com.sun.corba.se.spi.ior.Writeable ; 11 | 12 | /** IIOPAddress represents the host and port used to establish a 13 | * TCP connection for an IIOP request. 14 | */ 15 | public interface IIOPAddress extends Writeable 16 | { 17 | public String getHost() ; 18 | 19 | public int getPort() ; 20 | } 21 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/iiop/MaxStreamFormatVersionComponent.java: -------------------------------------------------------------------------------- 1 | /** 2 | * @(#)MaxStreamFormatVersionComponent.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.corba.se.spi.ior.iiop; 8 | 9 | import com.sun.corba.se.spi.ior.TaggedComponent ; 10 | 11 | // Java to IDL ptc 02-01-12 1.4.11 12 | // TAG_RMI_CUSTOM_MAX_STREAM_FORMAT 13 | public interface MaxStreamFormatVersionComponent extends TaggedComponent 14 | { 15 | public byte getMaxStreamFormatVersion() ; 16 | } 17 | -------------------------------------------------------------------------------- /com/sun/mirror/type/ReferenceType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ReferenceType.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.mirror.type; 9 | 10 | 11 | /** 12 | * Represents a reference type. 13 | * These include class and interface types, array types, and type variables. 14 | * 15 | * @author Joseph D. Darcy 16 | * @author Scott Seligman 17 | * @version 1.4 10/03/23 18 | * @since 1.5 19 | */ 20 | 21 | public interface ReferenceType extends TypeMirror { 22 | } 23 | -------------------------------------------------------------------------------- /javax/swing/plaf/MenuBarUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MenuBarUI.java 1.17 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | import java.awt.Insets; 11 | import javax.swing.JMenuBar; 12 | 13 | import javax.swing.JMenu; 14 | /** 15 | * Pluggable look and feel interface for JMenuBar. 16 | * 17 | * @version 1.17 03/23/10 18 | * @author Georges Saab 19 | * @author David Karlton 20 | */ 21 | 22 | public abstract class MenuBarUI extends ComponentUI { } 23 | 24 | -------------------------------------------------------------------------------- /org/omg/CORBA/BAD_POLICY.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)BAD_POLICY.java 1.15 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package org.omg.CORBA; 9 | /** 10 | * A PolicyErrorCode which would be filled in 11 | * the PolicyError exception. 12 | * 13 | * @author rip-dev 14 | * @version 1.15 03/23/10 15 | */ 16 | 17 | public interface BAD_POLICY { 18 | /** 19 | * The Error code in PolicyError exception. 20 | */ 21 | final short value = (short) (0L); 22 | }; 23 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:27 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/protocol/giopmsgheaders/FragmentMessage.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)FragmentMessage.java 1.11 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.protocol.giopmsgheaders; 9 | 10 | /** 11 | * This interface captures the FragmentMessage contract. 12 | * 13 | * @author Ram Jeyaraman 05/14/2000 14 | * @version 1.0 15 | */ 16 | 17 | public interface FragmentMessage extends Message { 18 | int getRequestId(); 19 | int getHeaderLength(); 20 | } 21 | -------------------------------------------------------------------------------- /com/sun/corba/se/pept/transport/ByteBufferPool.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ByteBufferPool.java 1.6 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.pept.transport; 9 | 10 | import java.nio.ByteBuffer; 11 | 12 | /** 13 | * @author Charlie Hunt 14 | */ 15 | public interface ByteBufferPool 16 | { 17 | public ByteBuffer getByteBuffer(int theSize); 18 | public void releaseByteBuffer(ByteBuffer thebb); 19 | public int activeCount(); 20 | } 21 | 22 | // End of file. 23 | -------------------------------------------------------------------------------- /com/sun/source/util/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)package-info.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | * 7 | * Use and Distribution is subject to the Java Research License available 8 | * at . 9 | */ 10 | 11 | /** 12 | * Provides utilities for operations on abstract syntax trees (AST). 13 | * 14 | * @author Peter von der Ahé 15 | * @author Jonathan Gibbons 16 | * @since 1.6 17 | */ 18 | package com.sun.source.util; 19 | -------------------------------------------------------------------------------- /javax/lang/model/type/NullType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)NullType.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.lang.model.type; 9 | 10 | 11 | /** 12 | * Represents the null type. 13 | * This is the type of the expression {@code null}, 14 | * 15 | * @author Joseph D. Darcy 16 | * @author Scott Seligman 17 | * @author Peter von der Ahé 18 | * @version 1.4 10/03/23 19 | * @since 1.6 20 | */ 21 | 22 | public interface NullType extends ReferenceType { 23 | } 24 | -------------------------------------------------------------------------------- /javax/swing/plaf/ColorChooserUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ColorChooserUI.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | import javax.swing.*; 11 | import javax.swing.colorchooser.*; 12 | 13 | /** 14 | * Pluggable look and feel interface for JColorChooser. 15 | * 16 | * @version 1.14 03/23/10 17 | * @author Amy Fowler 18 | * @author Steve Wilson 19 | */ 20 | 21 | public abstract class ColorChooserUI extends ComponentUI 22 | { 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /javax/swing/plaf/MenuItemUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MenuItemUI.java 1.18 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package javax.swing.plaf; 8 | 9 | import javax.swing.*; 10 | import java.awt.event.*; 11 | 12 | /** 13 | * Pluggable look and feel interface for JMenuItem. 14 | * 15 | * @version @(#)MenuItemUI.java 1.18 10/03/23 16 | * @author Georges Saab 17 | * @author David Karlton 18 | * @author Arnaud Weber 19 | */ 20 | public abstract class MenuItemUI extends ButtonUI { 21 | } 22 | 23 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/Writeable.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Writeable.java 1.17 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.ior; 9 | 10 | import org.omg.CORBA_2_3.portable.OutputStream ; 11 | 12 | /** This interface represents an entity that can be written to an OutputStream. 13 | * @author Ken Cavanaugh 14 | */ 15 | public interface Writeable 16 | { 17 | /** Write this object directly to the output stream. 18 | */ 19 | void write(OutputStream arg0); 20 | } 21 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/iiop/AlternateIIOPAddressComponent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)AlternateIIOPAddressComponent.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.ior.iiop; 9 | 10 | import com.sun.corba.se.spi.ior.iiop.IIOPAddress ; 11 | import com.sun.corba.se.spi.ior.TaggedComponent ; 12 | 13 | /** 14 | * @author Ken Cavanaugh 15 | */ 16 | public interface AlternateIIOPAddressComponent extends TaggedComponent 17 | { 18 | public IIOPAddress getAddress() ; 19 | } 20 | -------------------------------------------------------------------------------- /org/omg/CORBA/BAD_POLICY_TYPE.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)BAD_POLICY_TYPE.java 1.15 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package org.omg.CORBA; 9 | 10 | /** 11 | * A PolicyErrorCode which would be filled in 12 | * the PolicyError exception. 13 | * 14 | * @author rip-dev 15 | * @version 1.15 03/23/10 16 | */ 17 | public interface BAD_POLICY_TYPE { 18 | /** 19 | * The Error code in PolicyError exception. 20 | */ 21 | final short value = (short) (2L); 22 | }; 23 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:32 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:29 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/encoding/MarkAndResetHandler.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MarkAndResetHandler.java 1.8 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.corba.se.impl.encoding; 8 | 9 | 10 | /** 11 | * Defines an abstraction for a RestorableInputStream to 12 | * implement mark/reset. 13 | */ 14 | interface MarkAndResetHandler 15 | { 16 | void mark(RestorableInputStream inputStream); 17 | 18 | void fragmentationOccured(ByteBufferWithInfo newFragment); 19 | 20 | void reset(); 21 | } 22 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/iiop/CodeSetsComponent.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)CodeSetsComponent.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.ior.iiop; 9 | 10 | import com.sun.corba.se.spi.ior.TaggedComponent ; 11 | 12 | import com.sun.corba.se.impl.encoding.CodeSetComponentInfo ; 13 | 14 | /** 15 | * @author Ken Cavanaugh 16 | */ 17 | public interface CodeSetsComponent extends TaggedComponent 18 | { 19 | public CodeSetComponentInfo getCodeSetComponentInfo() ; 20 | } 21 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/InnerGlowEffect.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)InnerGlowEffect.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.Color; 10 | 11 | /** 12 | * InnerGlowEffect 13 | * 14 | * @author Created by Jasper Potts (Jun 21, 2007) 15 | * @version 1.0 16 | */ 17 | class InnerGlowEffect extends InnerShadowEffect { 18 | InnerGlowEffect() { 19 | distance = 0; 20 | color = new Color(255, 255, 211); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/OuterGlowEffect.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)OuterGlowEffect.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.Color; 10 | 11 | /** 12 | * InnerGlowEffect 13 | * 14 | * @author Created by Jasper Potts (Jun 21, 2007) 15 | * @version 1.0 16 | */ 17 | class OuterGlowEffect extends DropShadowEffect { 18 | OuterGlowEffect() { 19 | distance = 0; 20 | color = new Color(255, 255, 211); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:32 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:10 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/encoding/RestorableInputStream.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)RestorableInputStream.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.corba.se.impl.encoding; 8 | 9 | /** 10 | * Defines the methods on an input stream which provide 11 | * a way to get and restore its internal state without 12 | * violating encapsulation. 13 | */ 14 | interface RestorableInputStream 15 | { 16 | Object createStreamMemento(); 17 | 18 | void restoreInternalState(Object streamMemento); 19 | } 20 | -------------------------------------------------------------------------------- /com/sun/source/tree/package-info.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)package-info.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | * 7 | * Use and Distribution is subject to the Java Research License available 8 | * at . 9 | */ 10 | 11 | /** 12 | * Provides interfaces to represent source code as abstract syntax 13 | * trees (AST). 14 | * 15 | * @author Peter von der Ahé 16 | * @author Jonathan Gibbons 17 | * @since 1.6 18 | */ 19 | package com.sun.source.tree; 20 | -------------------------------------------------------------------------------- /java/awt/peer/CanvasPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)CanvasPeer.java 1.17 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt.peer; 8 | 9 | import java.awt.*; 10 | 11 | /** 12 | * The peer interfaces are intended only for use in porting 13 | * the AWT. They are not intended for use by application 14 | * developers, and developers should not implement peers 15 | * nor invoke any of the peer methods directly on the peer 16 | * instances. 17 | */ 18 | public interface CanvasPeer extends ComponentPeer { 19 | } 20 | -------------------------------------------------------------------------------- /java/awt/peer/PanelPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)PanelPeer.java 1.15 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt.peer; 8 | 9 | import java.awt.*; 10 | 11 | /** 12 | * The peer interfaces are intended only for use in porting 13 | * the AWT. They are not intended for use by application 14 | * developers, and developers should not implement peers 15 | * nor invoke any of the peer methods directly on the peer 16 | * instances. 17 | */ 18 | public interface PanelPeer extends ContainerPeer { 19 | } 20 | -------------------------------------------------------------------------------- /java/lang/reflect/GenericSignatureFormatError.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)GenericSignatureFormatError.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.lang.reflect; 9 | 10 | 11 | /** 12 | * Thrown when a syntactically malformed signature attribute is 13 | * encountered by a reflective method that needs to interpret the 14 | * generic signature information for a type, method or constructor. 15 | * 16 | * @since 1.5 17 | */ 18 | public class GenericSignatureFormatError extends ClassFormatError{} 19 | -------------------------------------------------------------------------------- /java/util/zip/ZStreamRef.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ZStreamRef.java 1.2 10/03/23 3 | * 4 | * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.util.zip; 9 | 10 | /** 11 | * A reference to the native zlib's z_stream structure. 12 | */ 13 | 14 | class ZStreamRef { 15 | 16 | private long address; 17 | ZStreamRef (long address) { 18 | this.address = address; 19 | } 20 | 21 | long address() { 22 | return address; 23 | } 24 | 25 | void clear() { 26 | address = 0; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /javax/annotation/Resources.java: -------------------------------------------------------------------------------- 1 | //Copyright Sun Microsystems Inc. 2004 - 2005. 2 | 3 | package javax.annotation; 4 | import java.lang.annotation.*; 5 | import static java.lang.annotation.ElementType.*; 6 | import static java.lang.annotation.RetentionPolicy.*; 7 | 8 | /** 9 | * This class is used to allow multiple resources declarations. 10 | * 11 | * @see javax.annotation.Resource 12 | * @since Common Annotations 1.0 13 | */ 14 | 15 | @Documented 16 | @Retention(RUNTIME) 17 | @Target(TYPE) 18 | public @interface Resources { 19 | /** 20 | * Array used for multiple resource declarations. 21 | */ 22 | Resource[] value(); 23 | } 24 | -------------------------------------------------------------------------------- /javax/swing/plaf/ButtonUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ButtonUI.java 1.22 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package javax.swing.plaf; 8 | 9 | import javax.swing.AbstractButton; 10 | import javax.swing.GrayFilter; 11 | import javax.swing.Icon; 12 | import javax.swing.ImageIcon; 13 | import java.awt.Insets; 14 | 15 | /** 16 | * Pluggable look and feel interface for JButton. 17 | * 18 | * @version 1.22 03/23/10 19 | * @author Jeff Dinkins 20 | */ 21 | public abstract class ButtonUI extends ComponentUI { 22 | } 23 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/orbutil/closure/Constant.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Constant.java 1.9 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.orbutil.closure ; 9 | 10 | import com.sun.corba.se.spi.orbutil.closure.Closure ; 11 | 12 | public class Constant implements Closure { 13 | private Object value ; 14 | 15 | public Constant( Object value ) 16 | { 17 | this.value = value ; 18 | } 19 | 20 | public Object evaluate() 21 | { 22 | return value ; 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/presentation/rmi/IDLTypeException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)IDLTypeException.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.presentation.rmi ; 9 | 10 | /** 11 | * Checked exception containing information about an 12 | * an IDL type validation. 13 | */ 14 | public class IDLTypeException extends Exception { 15 | 16 | public IDLTypeException() {} 17 | 18 | public IDLTypeException(String message) { 19 | super(message); 20 | } 21 | 22 | } 23 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/protocol/giopmsgheaders/CancelRequestMessage.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)CancelRequestMessage.java 1.11 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.protocol.giopmsgheaders; 9 | 10 | /** 11 | * This interface captures the CancelRequestMessage contract. 12 | * 13 | * @author Ram Jeyaraman 05/14/2000 14 | * @version 1.0 15 | */ 16 | 17 | public interface CancelRequestMessage extends Message { 18 | int CANCEL_REQ_MSG_SIZE = 4; 19 | int getRequestId(); 20 | } 21 | -------------------------------------------------------------------------------- /java/lang/Iterable.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Iterable.java 1.6 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.lang; 9 | 10 | import java.util.Iterator; 11 | 12 | /** Implementing this interface allows an object to be the target of 13 | * the "foreach" statement. 14 | * @since 1.5 15 | */ 16 | public interface Iterable { 17 | 18 | /** 19 | * Returns an iterator over a set of elements of type T. 20 | * 21 | * @return an Iterator. 22 | */ 23 | Iterator iterator(); 24 | } 25 | -------------------------------------------------------------------------------- /com/sun/jmx/snmp/IPAcl/ParseError.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)file ParseError.java 3 | * @(#)author Sun Microsystems, Inc. 4 | * @(#)version 4.9 5 | * @(#)date 10/06/22 6 | * 7 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 8 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 9 | * 10 | */ 11 | 12 | 13 | /* Generated By:JavaCC: Do not edit this line. ParseError.java Version 0.7pre1 */ 14 | package com.sun.jmx.snmp.IPAcl; 15 | 16 | class ParseError extends Exception { 17 | public ParseError() { 18 | } 19 | public ParseError(String message) { 20 | super(message); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /java/awt/PrintGraphics.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)PrintGraphics.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.awt; 9 | 10 | /** 11 | * An abstract class which provides a print graphics context for a page. 12 | * 13 | * @version 1.14 03/23/10 14 | * @author Amy Fowler 15 | */ 16 | public interface PrintGraphics { 17 | 18 | /** 19 | * Returns the PrintJob object from which this PrintGraphics 20 | * object originated. 21 | */ 22 | public PrintJob getPrintJob(); 23 | 24 | } 25 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:27 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:10 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 | -------------------------------------------------------------------------------- /javax/xml/bind/DataBindingException.java: -------------------------------------------------------------------------------- 1 | package javax.xml.bind; 2 | 3 | /** 4 | * Exception that represents a failure in a JAXB operation. 5 | * 6 | *

7 | * This exception differs from {@link JAXBException} in that 8 | * this is an unchecked exception, while JAXBException 9 | * is a checked exception. 10 | * 11 | * @see JAXB 12 | * @since JAXB2.1 13 | */ 14 | public class DataBindingException extends RuntimeException { 15 | public DataBindingException(String message, Throwable cause) { 16 | super(message, cause); 17 | } 18 | 19 | public DataBindingException(Throwable cause) { 20 | super(cause); 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/protocol/ClientDelegateFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ClientDelegateFactory.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.protocol ; 9 | 10 | import com.sun.corba.se.spi.transport.CorbaContactInfoList ; 11 | 12 | import com.sun.corba.se.spi.protocol.CorbaClientDelegate ; 13 | 14 | /** Interface used to create a ClientDelegate from a ContactInfoList. 15 | */ 16 | public interface ClientDelegateFactory { 17 | CorbaClientDelegate create( CorbaContactInfoList list ) ; 18 | } 19 | -------------------------------------------------------------------------------- /javax/xml/ws/http/HTTPBinding.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 4 | */ 5 | 6 | package javax.xml.ws.http; 7 | 8 | 9 | import javax.xml.ws.Binding; 10 | 11 | /** The HTTPBinding interface is an 12 | * abstraction for the XML/HTTP binding. 13 | * 14 | * @since JAX-WS 2.0 15 | **/ 16 | public interface HTTPBinding extends Binding { 17 | 18 | /** 19 | * A constant representing the identity of the XML/HTTP binding. 20 | */ 21 | public static final String HTTP_BINDING = "http://www.w3.org/2004/08/wsdl/http"; 22 | } 23 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/mirror/type/VoidType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)VoidType.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.mirror.type; 9 | 10 | 11 | import com.sun.mirror.declaration.MethodDeclaration; 12 | 13 | 14 | /** 15 | * A pseudo-type representing the type of void. 16 | * 17 | * @author Joseph D. Darcy 18 | * @author Scott Seligman 19 | * @version 1.3 10/03/23 20 | * 21 | * @see MethodDeclaration#getReturnType() 22 | * @since 1.5 23 | */ 24 | 25 | public interface VoidType extends TypeMirror { 26 | } 27 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/ComboBoxEditableState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ComboBoxEditableState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class ComboBoxEditableState extends State { 15 | ComboBoxEditableState() { 16 | super("Editable"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | return ((JComboBox)c).isEditable(); 22 | } 23 | } 24 | 25 | -------------------------------------------------------------------------------- /java/awt/peer/CheckboxMenuItemPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)CheckboxMenuItemPeer.java 1.15 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt.peer; 8 | 9 | /** 10 | * The peer interfaces are intended only for use in porting 11 | * the AWT. They are not intended for use by application 12 | * developers, and developers should not implement peers 13 | * nor invoke any of the peer methods directly on the peer 14 | * instances. 15 | */ 16 | public interface CheckboxMenuItemPeer extends MenuItemPeer { 17 | void setState(boolean t); 18 | } 19 | -------------------------------------------------------------------------------- /java/awt/peer/KeyboardFocusManagerPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)KeyboardFocusManagerPeer.java 1.5 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.awt.peer; 9 | 10 | import java.awt.Component; 11 | import java.awt.Window; 12 | 13 | public interface KeyboardFocusManagerPeer { 14 | void setCurrentFocusedWindow(Window win); 15 | Window getCurrentFocusedWindow(); 16 | 17 | void setCurrentFocusOwner(Component comp); 18 | Component getCurrentFocusOwner(); 19 | 20 | void clearGlobalFocusOwner(Window activeWindow); 21 | } 22 | -------------------------------------------------------------------------------- /java/util/concurrent/ScheduledFuture.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ScheduledFuture.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.util.concurrent; 9 | 10 | /** 11 | * A delayed result-bearing action that can be cancelled. 12 | * Usually a scheduled future is the result of scheduling 13 | * a task with a {@link ScheduledExecutorService}. 14 | * 15 | * @since 1.5 16 | * @author Doug Lea 17 | * @param The result type returned by this Future 18 | */ 19 | public interface ScheduledFuture extends Delayed, Future { 20 | } 21 | -------------------------------------------------------------------------------- /javax/lang/model/type/ReferenceType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ReferenceType.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.lang.model.type; 9 | 10 | 11 | /** 12 | * Represents a reference type. 13 | * These include class and interface types, array types, type variables, 14 | * and the null type. 15 | * 16 | * @author Joseph D. Darcy 17 | * @author Scott Seligman 18 | * @author Peter von der Ahé 19 | * @version 1.4 10/03/23 20 | * @since 1.6 21 | */ 22 | public interface ReferenceType extends TypeMirror { 23 | } 24 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/mirror/type/EnumType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)EnumType.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.mirror.type; 9 | 10 | 11 | import com.sun.mirror.declaration.EnumDeclaration; 12 | 13 | 14 | /** 15 | * Represents an enum type. 16 | * 17 | * @author Joseph D. Darcy 18 | * @author Scott Seligman 19 | * @version 1.3 10/03/23 20 | * @since 1.5 21 | */ 22 | 23 | public interface EnumType extends ClassType { 24 | 25 | /** 26 | * {@inheritDoc} 27 | */ 28 | EnumDeclaration getDeclaration(); 29 | } 30 | -------------------------------------------------------------------------------- /java/awt/peer/PopupMenuPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)PopupMenuPeer.java 1.13 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt.peer; 8 | 9 | import java.awt.Event; 10 | 11 | /** 12 | * The peer interfaces are intended only for use in porting 13 | * the AWT. They are not intended for use by application 14 | * developers, and developers should not implement peers 15 | * nor invoke any of the peer methods directly on the peer 16 | * instances. 17 | */ 18 | public interface PopupMenuPeer extends MenuPeer { 19 | void show(Event e); 20 | } 21 | -------------------------------------------------------------------------------- /org/omg/CORBA/portable/IDLEntity.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)IDLEntity.java 1.13 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package org.omg.CORBA.portable; 9 | 10 | /** 11 | * An interface with no members whose only purpose is to serve as a marker 12 | * indicating that an implementing class is a 13 | * Java value type from IDL that has a corresponding Helper class. 14 | * RMI IIOP serialization looks for such a marker to perform 15 | * marshalling/unmarshalling. 16 | **/ 17 | public interface IDLEntity extends java.io.Serializable { 18 | 19 | } 20 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:32 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/pept/transport/InboundConnectionCache.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)InboundConnectionCache.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.pept.transport; 9 | 10 | /** 11 | * @author Harold Carr 12 | */ 13 | public interface InboundConnectionCache 14 | extends ConnectionCache 15 | { 16 | public Connection get(Acceptor acceptor); // REVISIT 17 | 18 | public void put(Acceptor acceptor, Connection connection); 19 | 20 | public void remove(Connection connection); 21 | } 22 | 23 | // End of file. 24 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/ior/TaggedComponentFactoryFinder.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)TaggedComponentFactoryFinder.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.ior; 9 | 10 | public interface TaggedComponentFactoryFinder extends IdentifiableFactoryFinder 11 | { 12 | /** Create a tagged component from a GIOP marshalled representation 13 | * of a tagged component. This is needed for portable interceptors. 14 | */ 15 | TaggedComponent create( org.omg.CORBA.ORB orb, 16 | org.omg.IOP.TaggedComponent comp ) ; 17 | } 18 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/SliderArrowShapeState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * SliderArrowShapeState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class SliderArrowShapeState extends State { 15 | SliderArrowShapeState() { 16 | super("ArrowShape"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | return c.getClientProperty("Slider.paintThumbArrowShape") == Boolean.TRUE; 21 | } 22 | } 23 | 24 | -------------------------------------------------------------------------------- /java/awt/peer/ButtonPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ButtonPeer.java 1.16 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.awt.peer; 9 | 10 | import java.awt.*; 11 | 12 | /** 13 | * The peer interfaces are intended only for use in porting 14 | * the AWT. They are not intended for use by application 15 | * developers, and developers should not implement peers 16 | * nor invoke any of the peer methods directly on the peer 17 | * instances. 18 | */ 19 | public interface ButtonPeer extends ComponentPeer { 20 | void setLabel(String label); 21 | } 22 | -------------------------------------------------------------------------------- /javax/xml/crypto/Data.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 3 | */ 4 | /* 5 | * $Id: Data.java,v 1.4 2005/05/10 15:47:41 mullan Exp $ 6 | */ 7 | package javax.xml.crypto; 8 | 9 | import javax.xml.crypto.dsig.Transform; 10 | 11 | /** 12 | * An abstract representation of the result of dereferencing a 13 | * {@link URIReference} or the input/output of subsequent {@link Transform}s. 14 | * The primary purpose of this interface is to group and provide type safety 15 | * for all Data subtypes. 16 | * 17 | * @author Sean Mullan 18 | * @author JSR 105 Expert Group 19 | * @since 1.6 20 | */ 21 | public interface Data { } 22 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/pept/transport/OutboundConnectionCache.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)OutboundConnectionCache.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.pept.transport; 9 | 10 | /** 11 | * @author Harold Carr 12 | */ 13 | public interface OutboundConnectionCache 14 | extends ConnectionCache 15 | { 16 | public Connection get(ContactInfo contactInfo); 17 | 18 | public void put(ContactInfo contactInfo, Connection connection); 19 | 20 | public void remove(ContactInfo contactInfo); 21 | } 22 | 23 | // End of file. 24 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/copyobject/ReflectiveCopyException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ReflectiveCopyException.java 1.6 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.corba.se.spi.copyobject ; 8 | 9 | public class ReflectiveCopyException extends Exception { 10 | public ReflectiveCopyException() 11 | { 12 | super() ; 13 | } 14 | 15 | public ReflectiveCopyException( String msg ) 16 | { 17 | super( msg ) ; 18 | } 19 | 20 | public ReflectiveCopyException( String msg, Throwable t ) 21 | { 22 | super( msg, t ) ; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /com/sun/mirror/declaration/EnumConstantDeclaration.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)EnumConstantDeclaration.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.mirror.declaration; 9 | 10 | 11 | /** 12 | * Represents an enum constant declaration. 13 | * 14 | * @author Joseph D. Darcy 15 | * @author Scott Seligman 16 | * @version 1.4 10/03/23 17 | * @since 1.5 18 | */ 19 | 20 | public interface EnumConstantDeclaration extends FieldDeclaration { 21 | /** 22 | * {@inheritDoc} 23 | */ 24 | EnumDeclaration getDeclaringType(); 25 | } 26 | -------------------------------------------------------------------------------- /java/lang/reflect/MalformedParameterizedTypeException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MalformedParameterizedTypeException.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | 9 | package java.lang.reflect; 10 | 11 | /** 12 | * Thrown when a semantically malformed parameterized type is 13 | * encountered by a reflective method that needs to instantiate it. 14 | * For example, if the number of type arguments to a parameterized type 15 | * is wrong. 16 | * 17 | * @since 1.5 18 | */ 19 | public class MalformedParameterizedTypeException extends RuntimeException{} 20 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/protocol/giopmsgheaders/LocateRequestMessage.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)LocateRequestMessage.java 1.11 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.protocol.giopmsgheaders; 9 | 10 | import com.sun.corba.se.spi.ior.ObjectKey; 11 | 12 | /** 13 | * This interface captures the LocateRequestMessage contract. 14 | * 15 | * @author Ram Jeyaraman 05/14/2000 16 | * @version 1.0 17 | */ 18 | 19 | public interface LocateRequestMessage extends Message { 20 | int getRequestId(); 21 | ObjectKey getObjectKey(); 22 | } 23 | -------------------------------------------------------------------------------- /com/sun/jmx/snmp/IPAcl/JDMIpV6Address.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)file JDMIpV6Address.java 3 | * @(#)author Sun Microsystems, Inc. 4 | * @(#)version 1.8 5 | * @(#)date 10/06/22 6 | * 7 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 8 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 9 | * 10 | */ 11 | 12 | /* Generated By:JJTree: Do not edit this line. JDMIpV6Address.java */ 13 | 14 | package com.sun.jmx.snmp.IPAcl; 15 | 16 | class JDMIpV6Address extends JDMIpAddress { 17 | public JDMIpV6Address(int id) { 18 | super(id); 19 | } 20 | 21 | public JDMIpV6Address(Parser p, int id) { 22 | super(p, id); 23 | } 24 | 25 | } 26 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orbutil/proxy/CompositeInvocationHandler.java: -------------------------------------------------------------------------------- 1 | package com.sun.corba.se.spi.orbutil.proxy ; 2 | 3 | import java.io.Serializable ; 4 | import java.lang.reflect.InvocationHandler ; 5 | 6 | public interface CompositeInvocationHandler extends InvocationHandler, 7 | Serializable 8 | { 9 | /** Add an invocation handler for all methods on interface interf. 10 | */ 11 | void addInvocationHandler( Class interf, InvocationHandler handler ) ; 12 | 13 | /** Set the default invocation handler to use if none of the 14 | * invocation handlers added by calls to addInvocationHandler apply. 15 | */ 16 | void setDefaultHandler( InvocationHandler handler ) ; 17 | } 18 | -------------------------------------------------------------------------------- /java/awt/peer/MenuComponentPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MenuComponentPeer.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt.peer; 8 | 9 | import java.awt.Font; 10 | 11 | /** 12 | * The peer interfaces are intended only for use in porting 13 | * the AWT. They are not intended for use by application 14 | * developers, and developers should not implement peers 15 | * nor invoke any of the peer methods directly on the peer 16 | * instances. 17 | */ 18 | public interface MenuComponentPeer { 19 | void dispose(); 20 | void setFont(Font f); 21 | } 22 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:27 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /java/awt/MenuContainer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MenuContainer.java 1.18 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt; 8 | 9 | /** 10 | * The super class of all menu related containers. 11 | * 12 | * @version 1.18, 03/23/10 13 | * @author Arthur van Hoff 14 | */ 15 | 16 | public interface MenuContainer { 17 | Font getFont(); 18 | void remove(MenuComponent comp); 19 | 20 | /** 21 | * @deprecated As of JDK version 1.1 22 | * replaced by dispatchEvent(AWTEvent). 23 | */ 24 | @Deprecated 25 | boolean postEvent(Event evt); 26 | } 27 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:31 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:10 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/protocol/giopmsgheaders/KeyAddr.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)KeyAddr.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.protocol.giopmsgheaders; 9 | 10 | 11 | /** 12 | * com/sun/corba/se/impl/protocol/giopmsgheaders/KeyAddr.java 13 | * Generated by the IDL-to-Java compiler (portable), version "3.0" 14 | * from ../../../../../../../src/share/classes/com/sun/corba/se/GiopIDL/g.idl 15 | * Sunday, June 4, 2000 5:18:54 PM PDT 16 | */ 17 | 18 | public interface KeyAddr 19 | { 20 | public static final short value = (short)(0); 21 | } 22 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /javax/swing/plaf/InputMapUIResource.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)InputMapUIResource.java 1.9 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | import javax.swing.InputMap; 11 | 12 | 13 | /** 14 | * A subclass of javax.swing.InputMap that implements UIResource. 15 | * UI classes which provide a InputMap should use this class. 16 | * 17 | * @version 1.9 03/23/10 18 | * @author Scott Violet 19 | * @since 1.3 20 | */ 21 | public class InputMapUIResource extends InputMap implements UIResource { 22 | public InputMapUIResource() { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /javax/xml/bind/NotIdentifiableEvent.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 | package javax.xml.bind; 7 | 8 | /** 9 | * This event indicates that a problem was encountered resolving an ID/IDREF. 10 | * 11 | * 12 | * @author

  • Ryan Shoemaker, Sun Microsystems, Inc.
  • Kohsuke Kawaguchi, Sun Microsystems, Inc.
  • Joe Fialli, Sun Microsystems, Inc.
13 | * @version $Revision: 1.1 $ 14 | * @see Validator 15 | * @see ValidationEventHandler 16 | * @since JAXB1.0 17 | */ 18 | public interface NotIdentifiableEvent extends ValidationEvent { 19 | 20 | } 21 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:31 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/transport/IORToSocketInfo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)IORToSocketInfo.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.transport; 9 | 10 | import java.util.List; 11 | 12 | import com.sun.corba.se.spi.ior.IOR; 13 | 14 | public interface IORToSocketInfo 15 | { 16 | /** 17 | * Used to extract socket address information from an IOR. 18 | * 19 | * @param ior. 20 | * 21 | * @return List - a list of SocketInfo. 22 | * 23 | */ 24 | public List getSocketInfo(IOR ior); 25 | } 26 | 27 | // End of file. 28 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/SplitPaneVerticalState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * SplitPaneVerticalState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class SplitPaneVerticalState extends State { 15 | SplitPaneVerticalState() { 16 | super("Vertical"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | return c instanceof JSplitPane && (((JSplitPane)c).getOrientation() == 1); 22 | } 23 | } 24 | 25 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:27 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:27 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/oa/NullServantImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)NullServantImpl.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.oa ; 9 | 10 | import org.omg.CORBA.SystemException ; 11 | 12 | import com.sun.corba.se.spi.oa.NullServant ; 13 | 14 | public class NullServantImpl implements NullServant 15 | { 16 | private SystemException sysex ; 17 | 18 | public NullServantImpl( SystemException ex ) 19 | { 20 | this.sysex = ex ; 21 | } 22 | 23 | public SystemException getException() 24 | { 25 | return sysex ; 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /javax/swing/plaf/ActionMapUIResource.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ActionMapUIResource.java 1.9 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.plaf; 9 | 10 | import javax.swing.ActionMap; 11 | 12 | 13 | /** 14 | * A subclass of javax.swing.ActionMap that implements UIResource. 15 | * UI classes which provide an ActionMap should use this class. 16 | * 17 | * @version 1.9 03/23/10 18 | * @author Scott Violet 19 | * @since 1.3 20 | */ 21 | public class ActionMapUIResource extends ActionMap implements UIResource { 22 | public ActionMapUIResource() { 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /org/omg/CORBA/VM_NONE.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)VM_NONE.java 1.11 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package org.omg.CORBA; 9 | 10 | /** 11 | * Defines the code used to represent the one of the values of a value type 12 | * in a typecode. 13 | * 14 | * @author OMG 15 | * @see org.omg.CORBA.TypeCode 16 | * @version 1.11 03/23/10 17 | * @since JDK1.2 18 | */ 19 | 20 | 21 | public interface VM_NONE { 22 | /** 23 | * The value representing the value type in a typecode as per 24 | * CORBA 2.3 spec. 25 | */ 26 | final short value = (short) (0L); 27 | } 28 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/protocol/giopmsgheaders/ProfileAddr.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ProfileAddr.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.protocol.giopmsgheaders; 9 | 10 | 11 | /** 12 | * com/sun/corba/se/impl/protocol/giopmsgheaders/ProfileAddr.java 13 | * Generated by the IDL-to-Java compiler (portable), version "3.0" 14 | * from ../../../../../../../src/share/classes/com/sun/corba/se/GiopIDL/g.idl 15 | * Sunday, June 4, 2000 5:18:54 PM PDT 16 | */ 17 | 18 | public interface ProfileAddr 19 | { 20 | public static final short value = (short)(1); 21 | } 22 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/ProgressBarFinishedState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ProgressBarFinishedState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class ProgressBarFinishedState extends State { 15 | ProgressBarFinishedState() { 16 | super("Finished"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | return ((JProgressBar)c).getPercentComplete() == 1.0; 22 | 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /javax/lang/model/type/PrimitiveType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)PrimitiveType.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.lang.model.type; 9 | 10 | 11 | /** 12 | * Represents a primitive type. These include 13 | * {@code boolean}, {@code byte}, {@code short}, {@code int}, 14 | * {@code long}, {@code char}, {@code float}, and {@code double}. 15 | * 16 | * @author Joseph D. Darcy 17 | * @author Scott Seligman 18 | * @author Peter von der Ahé 19 | * @version 1.4 10/03/23 20 | * @since 1.6 21 | */ 22 | public interface PrimitiveType extends TypeMirror { 23 | } 24 | -------------------------------------------------------------------------------- /javax/swing/GraphicsWrapper.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)GraphicsWrapper.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package javax.swing; 8 | 9 | /** 10 | * A private interface to access clip bounds in wrapped Graphics objects. 11 | * 12 | * @version 1.10 03/23/10 13 | * @author Thomas Ball 14 | */ 15 | 16 | import java.awt.*; 17 | 18 | interface GraphicsWrapper { 19 | Graphics subGraphics(); 20 | 21 | boolean isClipIntersecting(Rectangle r); 22 | 23 | int getClipX(); 24 | 25 | int getClipY(); 26 | 27 | int getClipWidth(); 28 | 29 | int getClipHeight(); 30 | } 31 | -------------------------------------------------------------------------------- /javax/swing/event/HyperlinkListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)HyperlinkListener.java 1.12 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package javax.swing.event; 8 | 9 | 10 | import java.util.EventListener; 11 | 12 | /** 13 | * HyperlinkListener 14 | * 15 | * @version 1.12 03/23/10 16 | * @author Timothy Prinzing 17 | */ 18 | public interface HyperlinkListener extends EventListener { 19 | 20 | /** 21 | * Called when a hypertext link is updated. 22 | * 23 | * @param e the event responsible for the update 24 | */ 25 | void hyperlinkUpdate(HyperlinkEvent e); 26 | } 27 | 28 | -------------------------------------------------------------------------------- /javax/swing/event/UndoableEditListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)UndoableEditListener.java 1.18 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.event; 9 | 10 | import javax.swing.undo.*; 11 | 12 | /** 13 | * Interface implemented by a class interested in hearing about 14 | * undoable operations. 15 | * 16 | * @version 1.18 03/23/10 17 | * @author Ray Ryan 18 | */ 19 | 20 | public interface UndoableEditListener extends java.util.EventListener { 21 | 22 | /** 23 | * An undoable edit happened 24 | */ 25 | void undoableEditHappened(UndoableEditEvent e); 26 | } 27 | -------------------------------------------------------------------------------- /javax/swing/text/DefaultTextUI.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)DefaultTextUI.java 1.90 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package javax.swing.text; 8 | 9 | import javax.swing.plaf.basic.BasicTextUI; 10 | 11 | /** 12 | *

13 | * This class has been deprecated and should no longer be used. 14 | * The basis of the various TextUI implementations can be found 15 | * in the javax.swing.plaf.basic package and the class 16 | * BasicTextUI replaces this class. 17 | * 18 | * @deprecated 19 | */ 20 | @Deprecated 21 | public abstract class DefaultTextUI extends BasicTextUI { 22 | 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /org/omg/CORBA/UNSUPPORTED_POLICY.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)UNSUPPORTED_POLICY.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package org.omg.CORBA; 9 | 10 | /** 11 | * One of the PolicyErrorCodes which would be filled if 12 | * the requested Policy is understood to be valid by the 13 | * ORB, but is not currently supported. 14 | * 15 | * @author rip-dev 16 | * @version 1.14 03/23/10 17 | */ 18 | public interface UNSUPPORTED_POLICY { 19 | /** 20 | * The Error code for PolicyError exception. 21 | */ 22 | final short value = (short) (1L); 23 | }; 24 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:32 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:32 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/SliderSliderThumbArrowShapeState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * SliderSliderThumbArrowShapeState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class SliderSliderThumbArrowShapeState extends State { 15 | SliderSliderThumbArrowShapeState() { 16 | super("ArrowShape"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | return c.getClientProperty("Slider.paintThumbArrowShape") == Boolean.TRUE; 21 | } 22 | } 23 | 24 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/SliderSliderTrackArrowShapeState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * SliderSliderTrackArrowShapeState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class SliderSliderTrackArrowShapeState extends State { 15 | SliderSliderTrackArrowShapeState() { 16 | super("ArrowShape"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | return c.getClientProperty("Slider.paintThumbArrowShape") == Boolean.TRUE; 21 | } 22 | } 23 | 24 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/TextAreaNotInScrollPaneState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * TextAreaNotInScrollPaneState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class TextAreaNotInScrollPaneState extends State { 15 | TextAreaNotInScrollPaneState() { 16 | super("NotInScrollPane"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | return !(c.getParent() instanceof javax.swing.JViewport); 22 | } 23 | } 24 | 25 | -------------------------------------------------------------------------------- /com/sun/mirror/type/AnnotationType.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)AnnotationType.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.mirror.type; 9 | 10 | 11 | import com.sun.mirror.declaration.AnnotationTypeDeclaration; 12 | 13 | 14 | /** 15 | * Represents an annotation type. 16 | * 17 | * @author Joseph D. Darcy 18 | * @author Scott Seligman 19 | * @version 1.3 10/03/23 20 | * @since 1.5 21 | */ 22 | 23 | public interface AnnotationType extends InterfaceType { 24 | 25 | /** 26 | * {@inheritDoc} 27 | */ 28 | AnnotationTypeDeclaration getDeclaration(); 29 | } 30 | -------------------------------------------------------------------------------- /javax/xml/stream/events/ProcessingInstruction.java: -------------------------------------------------------------------------------- 1 | package javax.xml.stream.events; 2 | /** 3 | * An interface that describes the data found in processing instructions 4 | * 5 | * @version 1.0 6 | * @author Copyright (c) 2009 by Oracle Corporation. All Rights Reserved. 7 | * @since 1.6 8 | */ 9 | public interface ProcessingInstruction extends XMLEvent { 10 | 11 | /** 12 | * The target section of the processing instruction 13 | * 14 | * @return the String value of the PI or null 15 | */ 16 | public String getTarget(); 17 | 18 | /** 19 | * The data section of the processing instruction 20 | * 21 | * @return the String value of the PI's data or null 22 | */ 23 | public String getData(); 24 | } 25 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/protocol/giopmsgheaders/ReferenceAddr.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ReferenceAddr.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.protocol.giopmsgheaders; 9 | 10 | 11 | /** 12 | * com/sun/corba/se/impl/protocol/giopmsgheaders/ReferenceAddr.java 13 | * Generated by the IDL-to-Java compiler (portable), version "3.0" 14 | * from ../../../../../../../src/share/classes/com/sun/corba/se/GiopIDL/g.idl 15 | * Sunday, June 4, 2000 5:18:54 PM PDT 16 | */ 17 | 18 | public interface ReferenceAddr 19 | { 20 | public static final short value = (short)(2); 21 | } 22 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/util/SUNVMCID.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)SUNVMCID.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.util; 9 | 10 | /** 11 | * The vendor minor code ID reserved for Sun by the OMG. 12 | * All VMCIDs occupy the high order 20 bits. 13 | */ 14 | 15 | public interface SUNVMCID { 16 | 17 | /** 18 | * The vendor minor code ID reserved for Sun. This value is or'd with 19 | * the high order 20 bits of the minor code to produce the minor value 20 | * in a system exception. 21 | */ 22 | static final int value = 0x53550000; 23 | } 24 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orb/ParserData.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ParserData.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.corba.se.spi.orb ; 8 | 9 | import java.util.Properties ; 10 | 11 | public interface ParserData { 12 | public String getPropertyName() ; 13 | 14 | public Operation getOperation() ; 15 | 16 | public String getFieldName() ; 17 | 18 | public Object getDefaultValue() ; 19 | 20 | public Object getTestValue() ; 21 | 22 | public void addToParser( PropertyParser parser ) ; 23 | 24 | public void addToProperties( Properties props ) ; 25 | } 26 | 27 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/resolver/LocalResolver.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)LocalResolver.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.resolver ; 9 | 10 | import com.sun.corba.se.spi.orbutil.closure.Closure ; 11 | 12 | /** A LocalResolver is a Resolver that allows registration of (name, CORBA object) 13 | * bindings. 14 | */ 15 | public interface LocalResolver extends Resolver { 16 | /** Register the Closure with the given name. 17 | * The Closure must evaluate to an org.omg.CORBA.Object. 18 | */ 19 | void register( String name, Closure closure ) ; 20 | } 21 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/ProgressBarIndeterminateState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ProgressBarIndeterminateState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class ProgressBarIndeterminateState extends State { 15 | ProgressBarIndeterminateState() { 16 | super("Indeterminate"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | return ((JProgressBar)c).isIndeterminate(); 22 | 23 | } 24 | } 25 | 26 | -------------------------------------------------------------------------------- /java/awt/event/AdjustmentListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)AdjustmentListener.java 1.16 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.awt.event; 9 | 10 | import java.util.EventListener; 11 | 12 | /** 13 | * The listener interface for receiving adjustment events. 14 | * 15 | * @author Amy Fowler 16 | * @version 1.16 03/23/10 17 | * @since 1.1 18 | */ 19 | public interface AdjustmentListener extends EventListener { 20 | 21 | /** 22 | * Invoked when the value of the adjustable has changed. 23 | */ 24 | public void adjustmentValueChanged(AdjustmentEvent e); 25 | 26 | } 27 | -------------------------------------------------------------------------------- /javax/xml/stream/EventFilter.java: -------------------------------------------------------------------------------- 1 | package javax.xml.stream; 2 | import javax.xml.stream.events.XMLEvent; 3 | /** 4 | * This interface declares a simple filter interface that one can 5 | * create to filter XMLEventReaders 6 | * @version 1.0 7 | * @author Copyright (c) 2009 by Oracle Corporation. All Rights Reserved. 8 | * @since 1.6 9 | */ 10 | public interface EventFilter { 11 | /** 12 | * Tests whether this event is part of this stream. This method 13 | * will return true if this filter accepts this event and false 14 | * otherwise. 15 | * 16 | * @param event the event to test 17 | * @return true if this filter accepts this event, false otherwise 18 | */ 19 | public boolean accept(XMLEvent event); 20 | } 21 | -------------------------------------------------------------------------------- /org/omg/CORBA/portable/StreamableValue.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)StreamableValue.java 1.14 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | 9 | package org.omg.CORBA.portable; 10 | 11 | /** 12 | * Defines the base type for all non-boxed IDL valuetypes 13 | * that are not custom marshaled. 14 | * 15 | * All value types implement ValueBase either directly or 16 | * indirectly by implementing either the 17 | * StreamableValue or CustomValue interface. 18 | * 19 | * @author OMG 20 | * @version 1.14 03/23/10 21 | */ 22 | public interface StreamableValue extends Streamable, ValueBase { 23 | 24 | } 25 | 26 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:31 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/legacy/connection/USLPort.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)USLPort.java 1.8 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.legacy.connection; 9 | 10 | public class USLPort 11 | { 12 | private String type; 13 | private int port; 14 | 15 | public USLPort (String type, int port) 16 | { 17 | this.type = type; 18 | this.port = port; 19 | } 20 | 21 | public String getType () { return type; } 22 | public int getPort () { return port; } 23 | public String toString () { return type + ":" + port; } 24 | } 25 | 26 | // End of file. 27 | 28 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/protocol/RequestCanceledException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)RequestCanceledException.java 1.9 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.protocol; 9 | 10 | /** 11 | * If this exception is caught explicitly, this need to be rethrown. 12 | */ 13 | public class RequestCanceledException extends RuntimeException { 14 | 15 | private int requestId = 0; 16 | 17 | public RequestCanceledException(int requestId) { 18 | this.requestId = requestId; 19 | } 20 | 21 | public int getRequestId() { 22 | return this.requestId; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/protocol/giopmsgheaders/LocateReplyOrReplyMessage.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)LocateReplyOrReplyMessage.java 1.6 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.protocol.giopmsgheaders; 9 | 10 | import org.omg.CORBA.SystemException; 11 | import com.sun.corba.se.spi.ior.IOR; 12 | 13 | public interface LocateReplyOrReplyMessage extends Message { 14 | 15 | int getRequestId(); 16 | int getReplyStatus(); 17 | SystemException getSystemException(String message); 18 | IOR getIOR(); 19 | short getAddrDisposition(); 20 | } 21 | 22 | // End of file. 23 | 24 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/ToolBarEastState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ToolBarEastState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class ToolBarEastState extends State { 15 | ToolBarEastState() { 16 | super("East"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | JToolBar toolbar = (JToolBar)c; 22 | return NimbusLookAndFeel.resolveToolbarConstraint(toolbar) == BorderLayout.EAST; 23 | 24 | } 25 | } 26 | 27 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/ToolBarWestState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ToolBarWestState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class ToolBarWestState extends State { 15 | ToolBarWestState() { 16 | super("West"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | JToolBar toolbar = (JToolBar)c; 22 | return NimbusLookAndFeel.resolveToolbarConstraint(toolbar) == BorderLayout.WEST; 23 | 24 | } 25 | } 26 | 27 | -------------------------------------------------------------------------------- /java/lang/StringValue.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)StringValue.java 1.2 10/03/23 3 | * 4 | * Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.lang; 9 | 10 | import java.util.Arrays; 11 | 12 | /** 13 | * This class consists exclusively of static methods that operate on 14 | * character arrays used by Strings for storing the value. 15 | */ 16 | 17 | class StringValue { 18 | private StringValue() { } 19 | 20 | /** 21 | * Returns a char array that is a copy of the given char array. 22 | */ 23 | static char[] from(char[] value) { 24 | return Arrays.copyOf(value, value.length); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /java/security/interfaces/RSAKey.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)RSAKey.java 1.8 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.security.interfaces; 9 | 10 | import java.math.BigInteger; 11 | 12 | /** 13 | * The interface to an RSA public or private key. 14 | * 15 | * @author Jan Luehe 16 | * @version 1.8 03/23/10 17 | * 18 | * @see RSAPublicKey 19 | * @see RSAPrivateKey 20 | * 21 | * @since 1.3 22 | */ 23 | 24 | public interface RSAKey { 25 | 26 | /** 27 | * Returns the modulus. 28 | * 29 | * @return the modulus 30 | */ 31 | public BigInteger getModulus(); 32 | } 33 | -------------------------------------------------------------------------------- /javax/swing/event/MouseInputListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MouseInputListener.java 1.13 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.swing.event; 9 | 10 | import java.awt.event.MouseListener; 11 | import java.awt.event.MouseMotionListener; 12 | 13 | /** 14 | * A listener implementing all the methods in both the {@code MouseListener} and 15 | * {@code MouseMotionListener} interfaces. 16 | * 17 | * @see MouseInputAdapter 18 | * @version 1.13 03/23/10 19 | * @author Philip Milne 20 | */ 21 | 22 | public interface MouseInputListener extends MouseListener, MouseMotionListener { 23 | } 24 | 25 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:31 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:27 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 | -------------------------------------------------------------------------------- /com/sun/source/util/TaskListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)TaskListener.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | * 7 | * Use and Distribution is subject to the Java Research License available 8 | * at . 9 | */ 10 | 11 | package com.sun.source.util; 12 | 13 | 14 | /** 15 | * Provides a listener to monitor the activity of the Sun Java Compiler, javac. 16 | * 17 | * @author Jonathan Gibbons 18 | * @since 1.6 19 | */ 20 | public interface TaskListener 21 | { 22 | public void started(TaskEvent e); 23 | 24 | public void finished(TaskEvent e); 25 | } 26 | -------------------------------------------------------------------------------- /java/awt/color/ProfileDataException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ProfileDataException.java 1.17 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.awt.color; 9 | 10 | /** 11 | * This exception is thrown when an error occurs in accessing or 12 | * processing an ICC_Profile object. 13 | */ 14 | 15 | public class ProfileDataException extends java.lang.RuntimeException { 16 | 17 | /** 18 | * Constructs a ProfileDataException with the specified detail message. 19 | * @param s the specified detail message 20 | */ 21 | public ProfileDataException(String s) { 22 | super (s); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /java/awt/peer/MenuPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MenuPeer.java 1.17 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt.peer; 8 | 9 | import java.awt.MenuItem; 10 | 11 | /** 12 | * The peer interfaces are intended only for use in porting 13 | * the AWT. They are not intended for use by application 14 | * developers, and developers should not implement peers 15 | * nor invoke any of the peer methods directly on the peer 16 | * instances. 17 | */ 18 | public interface MenuPeer extends MenuItemPeer { 19 | void addSeparator(); 20 | void addItem(MenuItem item); 21 | void delItem(int index); 22 | } 23 | -------------------------------------------------------------------------------- /javax/swing/event/CaretListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)CaretListener.java 1.11 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package javax.swing.event; 8 | 9 | 10 | import java.util.EventListener; 11 | 12 | /** 13 | * Listener for changes in the caret position of a text 14 | * component. 15 | * 16 | * @version 1.11 03/23/10 17 | * @author Timothy Prinzing 18 | */ 19 | public interface CaretListener extends EventListener { 20 | 21 | /** 22 | * Called when the caret position is updated. 23 | * 24 | * @param e the caret event 25 | */ 26 | void caretUpdate(CaretEvent e); 27 | } 28 | 29 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:27 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/ToolBarNorthState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ToolBarNorthState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class ToolBarNorthState extends State { 15 | ToolBarNorthState() { 16 | super("North"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | JToolBar toolbar = (JToolBar)c; 22 | return NimbusLookAndFeel.resolveToolbarConstraint(toolbar) == BorderLayout.NORTH; 23 | 24 | } 25 | } 26 | 27 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/ToolBarSouthState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * ToolBarSouthState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class ToolBarSouthState extends State { 15 | ToolBarSouthState() { 16 | super("South"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | JToolBar toolbar = (JToolBar)c; 22 | return NimbusLookAndFeel.resolveToolbarConstraint(toolbar) == BorderLayout.SOUTH; 23 | 24 | } 25 | } 26 | 27 | -------------------------------------------------------------------------------- /java/awt/peer/LabelPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)LabelPeer.java 1.18 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt.peer; 8 | 9 | import java.awt.Color; 10 | import java.awt.Font; 11 | 12 | /** 13 | * The peer interfaces are intended only for use in porting 14 | * the AWT. They are not intended for use by application 15 | * developers, and developers should not implement peers 16 | * nor invoke any of the peer methods directly on the peer 17 | * instances. 18 | */ 19 | public interface LabelPeer extends ComponentPeer { 20 | void setText(String label); 21 | void setAlignment(int alignment); 22 | } 23 | -------------------------------------------------------------------------------- /java/awt/peer/MenuBarPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MenuBarPeer.java 1.17 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt.peer; 8 | 9 | import java.awt.Menu; 10 | 11 | /** 12 | * The peer interfaces are intended only for use in porting 13 | * the AWT. They are not intended for use by application 14 | * developers, and developers should not implement peers 15 | * nor invoke any of the peer methods directly on the peer 16 | * instances. 17 | */ 18 | public interface MenuBarPeer extends MenuComponentPeer { 19 | void addMenu(Menu m); 20 | void delMenu(int index); 21 | void addHelpMenu(Menu m); 22 | } 23 | -------------------------------------------------------------------------------- /javax/swing/event/ChangeListener.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ChangeListener.java 1.13 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package javax.swing.event; 8 | 9 | 10 | import java.util.EventListener; 11 | 12 | 13 | /** 14 | * Defines an object which listens for ChangeEvents. 15 | * 16 | * @version 1.13 03/23/10 17 | * @author Jeff Dinkins 18 | */ 19 | public interface ChangeListener extends EventListener { 20 | /** 21 | * Invoked when the target of the listener has changed its state. 22 | * 23 | * @param e a ChangeEvent object 24 | */ 25 | void stateChanged(ChangeEvent e); 26 | } 27 | 28 | -------------------------------------------------------------------------------- /javax/xml/ws/AsyncHandler.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 3 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 4 | */ 5 | 6 | package javax.xml.ws; 7 | 8 | /** The AsyncHandler interface is implemented by 9 | * clients that wish to receive callback notification of the completion of 10 | * service endpoint operations invoked asynchronously. 11 | * 12 | * @since JAX-WS 2.0 13 | **/ 14 | public interface AsyncHandler { 15 | 16 | /** Called when the response to an asynchronous operation is available. 17 | * 18 | * @param res The response to the operation invocation. 19 | * 20 | **/ 21 | void handleResponse(Response res); 22 | } 23 | -------------------------------------------------------------------------------- /org/omg/CORBA/VM_CUSTOM.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)VM_CUSTOM.java 1.11 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package org.omg.CORBA; 9 | 10 | /** Defines the code used to represent a custom marshalled value type in 11 | * a typecode. 12 | * This is one of the possible results of the type_modifier 13 | * method on the TypeCode interface. 14 | * @see org.omg.CORBA.TypeCode 15 | * @version 1.11 03/23/10 16 | */ 17 | public interface VM_CUSTOM { 18 | /** The value representing a custom marshalled value type in 19 | * a typecode. 20 | */ 21 | final short value = (short) (1L); 22 | } 23 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/naming/namingutil/NamingConstants.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)NamingConstants.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.corba.se.impl.naming.namingutil; 8 | 9 | /** 10 | * Constants specific to INS parsing and validation. 11 | */ 12 | public class NamingConstants { 13 | 14 | // iiop length 15 | public static final int IIOP_LENGTH = 4; 16 | 17 | // rir: length 18 | public static final int RIRCOLON_LENGTH = 4; 19 | 20 | public static final int MAJORNUMBER_SUPPORTED = 1; 21 | 22 | public static final int MINORNUMBERMAX = 2; 23 | } 24 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:08 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 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/InternalFrameWindowFocusedState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * InternalFrameWindowFocusedState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class InternalFrameWindowFocusedState extends State { 15 | InternalFrameWindowFocusedState() { 16 | super("WindowFocused"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | return c instanceof JInternalFrame && ((JInternalFrame)c).isSelected(); 22 | } 23 | } 24 | 25 | -------------------------------------------------------------------------------- /org/omg/CORBA/VM_ABSTRACT.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)VM_ABSTRACT.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package org.omg.CORBA; 9 | 10 | /** Defines the code used to represent an Abstract interface in 11 | * a typecode. 12 | * This is one of the possible results of the type_modified 13 | * method on the TypeCode interface. 14 | * @see org.omg.CORBA.TypeCode 15 | * @version 1.10 03/23/10 16 | */ 17 | public interface VM_ABSTRACT { 18 | /** The value representing an abstract interface value type in 19 | * a typecode. 20 | */ 21 | final short value = (short) (2L); 22 | } 23 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:09 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/monitoring/MonitoredObjectFactoryImpl.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MonitoredObjectFactoryImpl.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.impl.monitoring; 9 | 10 | import com.sun.corba.se.spi.monitoring.MonitoredObjectFactory; 11 | import com.sun.corba.se.spi.monitoring.MonitoredObject; 12 | 13 | public class MonitoredObjectFactoryImpl implements MonitoredObjectFactory { 14 | 15 | public MonitoredObject createMonitoredObject( String name, 16 | String description ) 17 | { 18 | return new MonitoredObjectImpl( name, description ); 19 | } 20 | } 21 | 22 | -------------------------------------------------------------------------------- /com/sun/javadoc/AnnotationTypeDoc.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)AnnotationTypeDoc.java 1.5 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.javadoc; 9 | 10 | 11 | /** 12 | * Represents an annotation type. 13 | * 14 | * @author Scott Seligman 15 | * @version 1.5 10/03/23 16 | * @since 1.5 17 | */ 18 | public interface AnnotationTypeDoc extends ClassDoc { 19 | 20 | /** 21 | * Returns the elements of this annotation type. 22 | * Returns an empty array if there are none. 23 | * 24 | * @return the elements of this annotation type. 25 | */ 26 | AnnotationTypeElementDoc[] elements(); 27 | } 28 | -------------------------------------------------------------------------------- /java/lang/Override.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Override.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.lang; 9 | 10 | import java.lang.annotation.*; 11 | 12 | /** 13 | * Indicates that a method declaration is intended to override a 14 | * method declaration in a superclass. If a method is annotated with 15 | * this annotation type but does not override a superclass method, 16 | * compilers are required to generate an error message. 17 | * 18 | * @author Joshua Bloch 19 | * @since 1.5 20 | */ 21 | @Target(ElementType.METHOD) 22 | @Retention(RetentionPolicy.SOURCE) 23 | public @interface Override { 24 | } 25 | -------------------------------------------------------------------------------- /javax/management/DescriptorRead.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)DescriptorRead.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package javax.management; 9 | 10 | /** 11 | * Interface to read the Descriptor of a management interface element 12 | * such as an MBeanInfo. 13 | * @since 1.6 14 | */ 15 | public interface DescriptorRead { 16 | /** 17 | * Returns a copy of Descriptor. 18 | * 19 | * @return Descriptor associated with the component implementing this interface. 20 | * The return value is never null, but the returned descriptor may be empty. 21 | */ 22 | public Descriptor getDescriptor(); 23 | } 24 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:32 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 | -------------------------------------------------------------------------------- /com/sun/source/tree/ErroneousTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ErroneousTree.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | * 7 | * Use and Distribution is subject to the Java Research License available 8 | * at . 9 | */ 10 | 11 | package com.sun.source.tree; 12 | 13 | import java.util.List; 14 | 15 | /** 16 | * A tree node to stand in for a malformed expression. 17 | * 18 | * @author Peter von der Ahé 19 | * @author Jonathan Gibbons 20 | * @since 1.6 21 | */ 22 | public interface ErroneousTree extends ExpressionTree { 23 | List getErrorTrees(); 24 | } 25 | -------------------------------------------------------------------------------- /java/security/acl/AclNotFoundException.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)AclNotFoundException.java 1.15 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.security.acl; 9 | 10 | /** 11 | * This is an exception that is thrown whenever a reference is made to a 12 | * non-existent ACL (Access Control List). 13 | * 14 | * @author Satish Dharmaraj 15 | */ 16 | public class AclNotFoundException extends Exception { 17 | 18 | private static final long serialVersionUID = 5684295034092681791L; 19 | 20 | /** 21 | * Constructs an AclNotFoundException. 22 | */ 23 | public AclNotFoundException() { 24 | } 25 | 26 | } 27 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:31 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orbutil/fsm/StateEngineFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)StateEngineFactory.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.orbutil.fsm; 9 | 10 | import com.sun.corba.se.impl.orbutil.fsm.StateEngineImpl ; 11 | 12 | /** 13 | * Factory for creating the standard state machine implementation. 14 | * 15 | * @version @(#)StateEngineFactory.java 1.10 10/03/23 16 | * @author Ken Cavanaugh 17 | */ 18 | public class StateEngineFactory { 19 | private StateEngineFactory() {} 20 | 21 | public static StateEngine create() 22 | { 23 | return new StateEngineImpl() ; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /com/sun/source/tree/StatementTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)StatementTree.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | * 7 | * Use and Distribution is subject to the Java Research License available 8 | * at . 9 | */ 10 | 11 | package com.sun.source.tree; 12 | 13 | /** 14 | * A tree node used as the base class for the different kinds of 15 | * statements. 16 | * 17 | * @see "The Java Language Specification, 3rd ed, chapter 14" 18 | * 19 | * @author Peter von der Ahé 20 | * @author Jonathan Gibbons 21 | * @since 1.6 22 | */ 23 | public interface StatementTree extends Tree {} 24 | -------------------------------------------------------------------------------- /org/omg/CORBA/IRObject.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)IRObject.java 1.27 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | /* 8 | * File: ./org/omg/CORBA/IRObject.java 9 | * From: ./ir.idl 10 | * Date: Fri Aug 28 16:03:31 1998 11 | * By: idltojava Java IDL 1.2 Aug 11 1998 02:00:18 12 | */ 13 | 14 | package org.omg.CORBA; 15 | /** 16 | An IRObject IDL interface represents the most generic interface 17 | from which all other Interface Repository interfaces are derived, 18 | even the Repository itself. 19 | */ 20 | 21 | public interface IRObject extends IRObjectOperations, org.omg.CORBA.Object, 22 | org.omg.CORBA.portable.IDLEntity 23 | { 24 | } 25 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:32 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:09 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/impl/orb/PropertyOnlyDataCollector.java: -------------------------------------------------------------------------------- 1 | 2 | package com.sun.corba.se.impl.orb ; 3 | 4 | import java.net.InetAddress ; 5 | 6 | import java.util.Properties ; 7 | 8 | import org.omg.CORBA.INTERNAL ; 9 | import org.omg.CORBA.CompletionStatus ; 10 | 11 | public class PropertyOnlyDataCollector extends DataCollectorBase 12 | { 13 | public PropertyOnlyDataCollector( Properties props, 14 | String localHostName, String configurationHostName ) 15 | { 16 | super( props, localHostName, configurationHostName ) ; 17 | } 18 | 19 | public boolean isApplet() 20 | { 21 | return false ; 22 | } 23 | 24 | protected void collect() 25 | { 26 | checkPropertyDefaults() ; 27 | 28 | findPropertiesFromProperties() ; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /com/sun/corba/se/pept/transport/Selector.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)Selector.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.pept.transport; 9 | 10 | /** 11 | * @author Harold Carr 12 | */ 13 | public interface Selector 14 | { 15 | public void setTimeout(long timeout); 16 | public long getTimeout(); 17 | public void registerInterestOps(EventHandler eventHandler); 18 | public void registerForEvent(EventHandler eventHander); 19 | public void unregisterForEvent(EventHandler eventHandler); 20 | public void close(); 21 | } 22 | 23 | // End of file. 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /com/sun/source/tree/ExpressionTree.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ExpressionTree.java 1.3 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | * 7 | * Use and Distribution is subject to the Java Research License available 8 | * at . 9 | */ 10 | 11 | package com.sun.source.tree; 12 | 13 | /** 14 | * A tree node used as the base class for the different types of 15 | * expressions. 16 | * 17 | * @see "The Java Language Specification, 3rd ed, chapter 15" 18 | * 19 | * @author Peter von der Ahé 20 | * @author Jonathan Gibbons 21 | * @since 1.6 22 | */ 23 | public interface ExpressionTree extends Tree {} 24 | -------------------------------------------------------------------------------- /java/awt/peer/CheckboxPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)CheckboxPeer.java 1.18 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt.peer; 8 | 9 | import java.awt.*; 10 | 11 | /** 12 | * The peer interfaces are intended only for use in porting 13 | * the AWT. They are not intended for use by application 14 | * developers, and developers should not implement peers 15 | * nor invoke any of the peer methods directly on the peer 16 | * instances. 17 | */ 18 | public interface CheckboxPeer extends ComponentPeer { 19 | void setState(boolean state); 20 | void setCheckboxGroup(CheckboxGroup g); 21 | void setLabel(String label); 22 | } 23 | -------------------------------------------------------------------------------- /java/awt/peer/ScrollbarPeer.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ScrollbarPeer.java 1.19 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.awt.peer; 8 | 9 | /** 10 | * The peer interfaces are intended only for use in porting 11 | * the AWT. They are not intended for use by application 12 | * developers, and developers should not implement peers 13 | * nor invoke any of the peer methods directly on the peer 14 | * instances. 15 | */ 16 | public interface ScrollbarPeer extends ComponentPeer { 17 | void setValues(int value, int visible, int minimum, int maximum); 18 | void setLineIncrement(int l); 19 | void setPageIncrement(int l); 20 | } 21 | -------------------------------------------------------------------------------- /java/nio/channels/ByteChannel.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ByteChannel.java 1.12 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package java.nio.channels; 9 | 10 | import java.io.IOException; 11 | 12 | 13 | /** 14 | * A channel that can read and write bytes. This interface simply unifies 15 | * {@link ReadableByteChannel} and {@link WritableByteChannel}; it does not 16 | * specify any new operations. 17 | * 18 | * @author Mark Reinhold 19 | * @author JSR-51 Expert Group 20 | * @version 1.12, 10/03/23 21 | * @since 1.4 22 | */ 23 | 24 | public interface ByteChannel 25 | extends ReadableByteChannel, WritableByteChannel 26 | { 27 | 28 | } 29 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:29 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/orbutil/closure/ClosureFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)ClosureFactory.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.orbutil.closure ; 9 | 10 | import com.sun.corba.se.impl.orbutil.closure.Constant ; 11 | import com.sun.corba.se.impl.orbutil.closure.Future ; 12 | 13 | public abstract class ClosureFactory { 14 | private ClosureFactory() {} 15 | 16 | public static Closure makeConstant( Object value ) 17 | { 18 | return new Constant( value ) ; 19 | } 20 | 21 | public static Closure makeFuture( Closure value ) 22 | { 23 | return new Future( value ) ; 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/transport/SocketInfo.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)SocketInfo.java 1.10 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | 8 | package com.sun.corba.se.spi.transport; 9 | 10 | public interface SocketInfo 11 | { 12 | // Endpoint types known in advance. 13 | // If you change the value of this constant then update 14 | // activation.idl accordingly. It has a duplicate definition 15 | // to avoid a compilation dependency. 16 | 17 | public static final String IIOP_CLEAR_TEXT = "IIOP_CLEAR_TEXT"; 18 | 19 | 20 | public String getType(); 21 | 22 | public String getHost(); 23 | 24 | public int getPort(); 25 | } 26 | -------------------------------------------------------------------------------- /com/sun/java/swing/plaf/nimbus/SplitPaneSplitPaneDividerVerticalState.java: -------------------------------------------------------------------------------- 1 | /* 2 | * SplitPaneSplitPaneDividerVerticalState.java 10/03/23 3 | * 4 | * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.java.swing.plaf.nimbus; 8 | 9 | import java.awt.*; 10 | import javax.swing.*; 11 | 12 | /** 13 | */ 14 | class SplitPaneSplitPaneDividerVerticalState extends State { 15 | SplitPaneSplitPaneDividerVerticalState() { 16 | super("Vertical"); 17 | } 18 | 19 | @Override protected boolean isInState(JComponent c) { 20 | 21 | return c instanceof JSplitPane && (((JSplitPane)c).getOrientation() == 1); 22 | } 23 | } 24 | 25 | -------------------------------------------------------------------------------- /java/net/SocketAddress.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)SocketAddress.java 1.7 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package java.net; 8 | 9 | 10 | /** 11 | * 12 | * This class represents a Socket Address with no protocol attachment. 13 | * As an abstract class, it is meant to be subclassed with a specific, 14 | * protocol dependent, implementation. 15 | *

16 | * It provides an immutable object used by sockets for binding, connecting, or 17 | * as returned values. 18 | * 19 | * @see java.net.Socket 20 | * @see java.net.ServerSocket 21 | * @since 1.4 22 | */ 23 | public abstract class SocketAddress implements java.io.Serializable { 24 | } 25 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:27 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:35:10 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 | -------------------------------------------------------------------------------- /com/sun/corba/se/spi/monitoring/MonitoredObjectFactory.java: -------------------------------------------------------------------------------- 1 | /* 2 | * @(#)MonitoredObjectFactory.java 1.4 10/03/23 3 | * 4 | * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 | * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 | */ 7 | package com.sun.corba.se.spi.monitoring; 8 | 9 | /** 10 | *

11 | * 12 | * @author Hemanth Puttaswamy 13 | *

14 | *

15 | * 16 | * MonitoredObject Factory to create Monitored Object. 17 | *

18 | */ 19 | public interface MonitoredObjectFactory { 20 | /** 21 | * A Simple Factory Method to create the Monitored Object. The name 22 | * should be the leaf level name. 23 | */ 24 | MonitoredObject createMonitoredObject( String name, String description ); 25 | } 26 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:30 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 | -------------------------------------------------------------------------------- /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 | * Tuesday, June 22, 2010 1:21:26 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 | --------------------------------------------------------------------------------