NoSuchPropertyExceptionHolder.java
929 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.service;
import com.adobe.service.NoSuchPropertyException;
import com.adobe.service.NoSuchPropertyExceptionHelper;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.InputStream;
import org.omg.CORBA.portable.OutputStream;
import org.omg.CORBA.portable.Streamable;
public final class NoSuchPropertyExceptionHolder
implements Streamable {
public NoSuchPropertyException value;
public NoSuchPropertyExceptionHolder() {
}
public NoSuchPropertyExceptionHolder(NoSuchPropertyException initial) {
this.value = initial;
}
public TypeCode _type() {
return NoSuchPropertyExceptionHelper.type();
}
public void _read(InputStream _in) {
this.value = NoSuchPropertyExceptionHelper.read(_in);
}
public void _write(OutputStream _out) {
NoSuchPropertyExceptionHelper.write(_out, this.value);
}
}