Interfaces, Pakete deklaration

David2456

Aktives Mitglied
Hallo ich habe folgende Aufgabe. Könnte einer über die deklaration bzw. über die abgehakten Punkte gucken, ob alles so stimmt?

Main
Java:
package print;

import print.printable.*;
import print.printer.*;

public class Main {
            public static void main(String[] args) {
                Printer box = new BoxPrinter();
                Printer noIndent = new IndentPrinter(0);
                Printer fourIndent = new IndentPrinter(4);
               
                String[] helloWorld
                    = {"public class Main {",
                    "   public static void main(String[] args) {",
                    "       Out.println(\"Hello, World!\")",
                    "    }",
                    "  }"
                   };
                   
                Printable text = new Text(helloWorld);
                Out.println("//generated by text.getMaxLineWidth();");
                Out.println(text.getMaxLineWidth());
                Out.println();
                Out.println("// generated by box.print(text);");
                box.print(text);
                Out.println();
               
                Printable person = new Person("Martina",
                                              "Mustermann",
                                              "Musterstrasse 12",
                                              "34567",
                                              "Musterstadt");
                                             
                Out.println("// generated by box.print(person);");
                box.print(person);
                Out.println();
                Out.println("// generated by noIndent.print(person);");
                noIndent.print(person);
                Out.println();
                Out.println("// generated by fourIndent.print(person);");
                fourIndent.print(person);
            }
    }

Printer
Java:
package print;

interface Printer {

    void print(Printable printable);
}

Printable
Java:
package print;

interface Printable {

    void getText(){
       
    }

    void getMaxWidth(){
       
    }
}

BoxPrinter
Java:
package print.printer;

public class BoxPrinter implements Printer {

}

IndentPrinter
Java:
package print.printer;

public class IndentPrinter implements Printer {

}

Person
Java:
package print.printable;

public class Person implements Printable {


   
}

Text
Java:
package print.printable;


public class Text implements Printable {

}

Out
Java:
package print;
import java.io.*;

/** Simple output to the console and to files.
<p>Copyright (c) 2005 Hanspeter Moessenboeck, University of Linz</p>

<p>This class is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.</p>

<p>This class is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE.  See the <a href="http://www.gnu.org/copyleft/gpl.html">
GNU General Public License</a> for more details.</p>
<hr>

<p>This class allows printing formatted data either to the console
or to a file. It is intended to be used in an introductory
programming course when classes, packages and exceptions are unknown
at the beginning. To use it, simply copy Out.class into the
current directory. </p>

<p>All output goes to the current output file, which is initially
the console. Opening a file with open() makes it the new current
output file. Closing a file with close() switches back to the previous
output file.</p>
*/

public class Out {

private static PrintStream out;
private static PrintStream[] stack;
private static int sp;
private static boolean done;

/** Return true if the previous Out operation was
successful, otherwise return false. */
public static boolean done() {
    return done && ! out.checkError();
}

/** Print the boolean value b either as "true" or "false". */
public static void print(boolean b) { out.print(b); }

/** Print the character value c. */
public static void print(char s) { out.print(s); }

/** Print the integer value i. */
public static void print(int i) { out.print(i); }

/** Print the long value l. */
public static void print(long l) { out.print(l); }

/** Print the float value f. */
public static void print(float f) { out.print(f); }

/** Print the double value d. */
public static void print(double d) { out.print(d); }

/** Print the character array a. */
public static void print(char[] a) { out.print(a); }

/** Print the String s. */
public static void print(String s) { out.print(s); }

/** Print the Object o as resulting from String.valueOf(o). */
public static void print(Object o) { out.print(o); }

/** Terminate the current line by writing a line separator string.
On windows this is the character sequence '\r' and '\n' */
public static void println() { out.println(); }

/** Print the boolean value b and terminate the line. */
public static void println(boolean b) { out.println(b); }

/** Print the character value c and terminate the line. */
public static void println(char s) { out.println(s); }

/** Print the integer value i and terminate the line. */
public static void println(int i) { out.println(i); }

/** Print the long value l and terminate the line. */
public static void println(long l) { out.println(l); }

/** Print the float value f and terminate the line. */
public static void println(float f) { out.println(f); }

/** Print the double value d and terminate the line. */
public static void println(double d) { out.println(d); }

/** Print the character array a and terminate the line. */
public static void println(char[] a) { out.println(a); }

/** Print the String s and terminate the line. */
public static void println(String s) { out.println(s); }

/** Print the Object o as resulting from String.valueOf(o)
and terminate the line. */
public static void println(Object o) { out.println(o); }

/** Open the file with the name fn as the current output file.
All subsequent output goes to this file until it is closed.
The old output file will be restored when the new output file is closed. */
public static void open(String fn) {
    try {
        PrintStream s = new PrintStream(new FileOutputStream(fn));
        stack[sp++] = out;
        out = s;
    } catch (Exception e) {
        done = false;
    }
}

/** Close the current output file.
The previous output file is restored and becomes the current output file. */
public static void close() {
    out.flush();
    out.close();
    if (sp > 0) out = stack[--sp];
}

static { // initializer
    done = true;
    out = System.out;
    stack = new PrintStream[8];
    sp = 0;
}

}
 

Anhänge

  • 1.JPG
    1.JPG
    108,3 KB · Aufrufe: 25

Neue Themen


Oben