I have:
- an abstract Message class,
- an abstract CustomMessage extending Message,
- a concrete SpecializedCustomMessage class extending CustomMessage,
as shown below, and I'm having trouble with the concrete class's constructor's call to super(). I've left out many details that I assume are irrelevant to the error I'm encountering. Is there a problem with having two levels of abstraction before deriving a concrete class?
public abstract class Message {
private int priority;
Message() {
priority = 1;
}
}
public abstract class CustomMessage extends Message {
CustomMessage() {
super();
}
}
public class SpecializedCustomMessage extends CustomMessage {
SpecializedCustomMessage() {
/*
* The following is flagged with the error:
* "cannot reference this before supertype constructor has been called"
*/
super();
}
}
Edit: as requested, the entire file. Search for LoadCyclerMessage().
package ibm1620;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
* Class Message: an object containing an event. See
* PriorityFIFOEventQueue for implementation of queue.
*
* @author Richard Jowsey <richard@jowsey.com>
* @author Chap Harrison <clh@pobox.com>
*/
//
//
// Extensive rewrite 7-JUL-2011 by CLH to use queuing to avoid
// having the Producer block until the Consumer catches up.
//
//
public abstract class Message implements Comparable<Message> {
private int priority;
Message() {
this.priority = 1;
}
Message(int priority) {
this.priority = priority;
}
/**
* Comparator to determine relative priority. Called by PriorityFIFOEventQueue.
*/
@Override
public int compareTo(Message other) {
// TODO - compare this and other for priority
return 0; // no priorities yet.
}
/**
* process() is overridden to handle message subclasses
*/
public abstract void process();
static void say(String s) {
System.out.println(s);
}
/* -------------------------------------------------------------------- */
/**
* Subclass ConsoleEventMessage:
*/
public static class ConsoleEventMessage extends Message {
private ConsoleObject obj = ConsoleObject.UNDEFINED_OBJ; // widget that was affected
private ObjectState state = ObjectState.UNDEFINED_STATE; // the widget's new state
/**
* Constructor specifying object and new state.
*/
public ConsoleEventMessage(ConsoleObject theObj, ObjectState theState) {
super();
obj = theObj;
state = theState;
}
@Override
public void process() {
// handleConsoleEventMessage(this);
// what do we do now??
}
/**
* Message accessors
*/
public ConsoleObject getObj() {
return this.obj;
}
public ObjectState getState() {
return this.state;
}
@Override
public String toString() {
return "[" + obj + ": " + state + "]";
}
public enum ConsoleObject {
UNDEFINED_OBJ, RESERVED,
/** Console keys */
RESET, DISPLAY_MAR, SAVE, INSERT, RELEASE, START, SIE, SCE,
/** Console toggle switches */
POWER, SPARE, DISK, PARITY_CHECK, IO_CHECK, OVERFLOW_CHECK, SENSE_SWITCH_1, SENSE_SWITCH_2, SENSE_SWITCH_3, SENSE_SWITCH_4, EMERGENCY,
/** Console dial */
MAR_SELECTOR_DIAL,
/** Card Reader events */
LOAD, READ, PUNCH
}
public enum ObjectState {
UNDEFINED_STATE, NA,
/** Toggle switches */
OFF, ON,
/** Console keys */
PRESSED,
/** MAR selector dial positions */
IR_1, IR_2, IR_3, OR_1, OR_2, OR_3, OR_4, OR_5, PR_1, PR_2, PR_3, CR_1
}
}
/* -------------------------------------------------------------------- */
/**
* Subclass CyclerMessage:
*/
public abstract class CyclerMessage extends Message {
CyclerMessage() {
super();
}
}
public static class LoadCyclerMessage extends CyclerMessage {
LoadCyclerMessage() {
super();
}
@Override
public void process() {
try {
Cycler.processLoadMessage();
} catch (CheckStop ex) {
Logger.getLogger(Message.class.getName()).log(Level.SEVERE, null, ex);
} catch (BugStop ex) {
Logger.getLogger(Message.class.getName()).log(Level.SEVERE, null, ex);
}
}
}
/**
* Subclass CardReaderMessage:
*/
public static class CardReaderMessage extends Message {
byte[] card;
boolean lastCardIndicator;
public CardReaderMessage(byte[] card, boolean lc) {
super();
this.card = card;
this.lastCardIndicator = lc;
}
@Override
public void process() {
Cycler.processCardReadMessage();
}
public byte[] getCard() {
return card;
}
public boolean isLastCard() {
return lastCardIndicator;
}
}
/* -------------------------------------------------------------------- */
/**
* Subclass CardPunchMessage: this is sent FROM the punch TO the CPU
* to acknowledge that the buffer has been accepted and the CPU may now
* resume.
*/
public static class CardPunchMessage extends Message {
PunchMessage message;
public CardPunchMessage(PunchMessage m) {
super();
message = m;
}
@Override
public void process() {
}
public PunchMessage getPunchMessage() {
return message;
}
public enum PunchMessage {
BUFFER_ACCEPTED
}
}
}