Searched defs:system (Results 1 - 8 of 8) sorted by relevance
/openjdk7/jdk/src/share/classes/java/rmi/activation/ |
H A D | ActivationGroupID.java | 33 * <li>identifies the group uniquely within the activation system, and 34 * <li>contains a reference to the group's activation system so that the 35 * group can contact its activation system when necessary.</ul><p> 39 * the group within the activation system. This group id is passed 50 * @serial The group's activation system. 52 private ActivationSystem system; field in class:ActivationGroupID 65 * @param system the group's activation system 68 public ActivationGroupID(ActivationSystem system) { argument 69 this.system [all...] |
H A D | ActivationGroup.java | 74 * <code>ActivationGroup</code> will override the system properties 77 * <code>java.rmi.RMISecurityManager</code> as the default system 121 /** the current group's activation system */ 376 * Set the activation system for the VM. The activation system can 378 * system is not set via this call, then the <code>getSystem</code> 383 * activation system is defined by 391 * @param system remote reference to the <code>ActivationSystem</code> 392 * @exception ActivationException if activation system is already set 393 * @exception SecurityException if permission to set the activation system i 401 setSystem(ActivationSystem system) argument [all...] |
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/ |
H A D | XSLOutputAttributes.java | 42 * doctype-system 68 * as the system identifier in the document type declaration (DTD). 69 * @return the system identifier to be used in the DOCTYPE declaration in 129 /** Set the value coming from the xsl:output doctype-public and doctype-system stylesheet properties 130 * @param system the system identifier to be used in the DOCTYPE declaration 135 public void setDoctype(String system, String pub); argument 142 /** Set the value coming from the xsl:output doctype-system stylesheet attribute. 143 * @param doctype the system identifier to be used in the DOCTYPE
|
H A D | EmptySerializer.java | 580 public void setDoctype(String system, String pub) argument
|
H A D | ToUnknownStream.java | 656 public void setDoctype(String system, String pub) argument 659 m_handler.setDoctypeSystem(system); 677 * @param doctype the system doctype to set
|
/openjdk7/jdk/test/java/lang/ProcessBuilder/ |
H A D | Basic.java | 334 // You might think the system streams would be 337 // causes immediate operating system I/O. 512 system("/bin/cp", "-fp", src, dst); 515 private static void system(String... command) { method in class:Basic 1081 System.out.println("This appears to be a Windows system."); 1083 System.out.println("This appears to be a Unix system.");
|
/openjdk7/jdk/src/share/classes/sun/rmi/server/ |
H A D | Activation.java | 192 private transient ActivationSystem system; field in class:Activation 254 system = new ActivationSystemImpl(port, ssf); 255 systemStub = (ActivationSystem) RemoteObject.toStub(system); 315 * Returns the activation system stub if the specified name 316 * matches the activation system's class name, otherwise 587 * Shutdown the activation system. Destroys all groups spawned by 621 "activation system shutting down"); 650 * Unexport activation system services 653 unexport(system); 685 * the RMI activation system daemo [all...] |
/openjdk7/jdk/src/windows/native/sun/windows/ |
H A D | awt_Component.cpp | 3540 UINT flags, BOOL system) 3550 InitMessage(&msg, (system ? WM_SYSKEYDOWN : WM_KEYDOWN), 3582 UINT flags, BOOL system) 3593 InitMessage(&msg, (system ? WM_SYSKEYUP : WM_KEYUP), 3639 MsgRouting AwtComponent::WmIMEChar(UINT character, UINT repCnt, UINT flags, BOOL system) argument 3658 BOOL system) 3671 UINT message = system ? WM_SYSCHAR : WM_CHAR; 3677 // Fix for bug 4141621, corrected by fix for bug 6223726: Alt+space doesn't invoke system menu 3680 if (system && alt_is_down) { 3686 // If this is a WM_CHAR (non-system) messag 3539 WmKeyDown(UINT wkey, UINT repCnt, UINT flags, BOOL system) argument 3581 WmKeyUp(UINT wkey, UINT repCnt, UINT flags, BOOL system) argument 3657 WmChar(UINT character, UINT repCnt, UINT flags, BOOL system) argument [all...] |
Completed in 102 milliseconds