Skip to content

Commit e2e4189

Browse files
committed
Add new methods to IFSFileImplProxy
1 parent c74a902 commit e2e4189

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

src/main/java/com/ibm/as400/access/IFSFileImplProxy.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
import java.io.IOException;
2222
import java.lang.reflect.InvocationTargetException;
23+
import java.util.Hashtable;
2324

2425

2526
/**
@@ -715,4 +716,22 @@ public void setSystem(AS400Impl system)
715716
}
716717
}
717718

719+
@Override
720+
public String getText() {
721+
// TODO Auto-generated method stub
722+
throw new UnsupportedOperationException();
723+
}
724+
725+
@Override
726+
public String getCodePage() {
727+
// TODO Auto-generated method stub
728+
throw new UnsupportedOperationException();
729+
}
730+
731+
@Override
732+
public Hashtable getExtendedAttributes() {
733+
// TODO Auto-generated method stub
734+
throw new UnsupportedOperationException();
735+
}
736+
718737
}

0 commit comments

Comments
 (0)