synchcomponent.java

来自「用java写的jt-jpeg。jt表示java time package」· Java 代码 · 共 36 行

JAVA
36
字号
/*
 |
 | SynchComponent.java
 |
 | SynchComponent class
 | James Shin Young
 |
 | Created:  February 18, 1998
 |
 | Copyright (c) 1998 by James Shin Young and the Regents
 | of the University of California.  All rights reserved.
 |
 | Permission to use, copy, modify, and distribute this software
 | and its documentation for NON-COMMERCIAL purposes and without
 | fee is hereby granted provided that this copyright notice
 | appears in all copies.
 |
 */

package jcp;

/**
 *  A component that communicates synchronously with other components.
 *  That is, emitting a signal to a SynchComponent will cause the sender
 *  to block until the reaction to the signal is complete.
 *
 *  @author James Shin Young
 */

public abstract class SynchComponent extends Component
{
    public SynchComponent() {
        super();
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?