SpecialCharDocument.java 398B

123456789101112131415161718192021
  1. package rocks.zipcode;
  2. import java.io.IOException;
  3. /**
  4. * @author leon on 18/11/2018.
  5. */
  6. public class SpecialCharDocument extends Document {
  7. public SpecialCharDocument(String fileName) throws IOException {
  8. super(fileName);
  9. }
  10. @Override
  11. public void write(String contentToBeWritten) {
  12. }
  13. private Boolean isSpecialCharacters(String s) {
  14. return null;
  15. }
  16. }