Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }