選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TestSoftening.java 386B

1234567891011121314151617181920
  1. //PR46750
  2. import java.rmi.RemoteException;
  3. public class TestSoftening {
  4. public static void main(String[] args) {
  5. TestSoftening test = new TestSoftening();
  6. test.perform();
  7. }
  8. public void perform() throws RemoteException {
  9. throw new RemoteException();
  10. }
  11. static aspect SofteningTestAspect {
  12. declare soft : RemoteException : call(void TestSoftening.perform());
  13. }
  14. }