jCMPL
Class CmplMsg

java.lang.Object
  extended by jCMPL.CmplMsg

public class CmplMsg
extends java.lang.Object

Handling of a CMPL message for jCMPL

Author:
mike

Constructor Summary
CmplMsg()
          Constructor
 
Method Summary
 java.lang.String description()
          Returns the a description of the error or warning message
 java.lang.String file()
          Returns the name of the CMPL file in that the error or warning occurs
 java.lang.String line()
          Returns the line in the CMPL file in that the error or warning occurs
protected  void setDesrciption(java.lang.String description)
           
protected  void setFile(java.lang.String file)
          Setter for the file name Used by CMPL
protected  void setLine(java.lang.String line)
          Setter fpr the line Used by CMPL
protected  void setType(java.lang.String type)
          Setter for the message type Used by Cmpl
 java.lang.String type()
          Returns the type of the messages
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

CmplMsg

public CmplMsg()
Constructor

Method Detail

type

public java.lang.String type()
Returns the type of the messages

Returns:
message type warning|error

setType

protected void setType(java.lang.String type)
Setter for the message type Used by Cmpl

Parameters:
type - message type

file

public java.lang.String file()
Returns the name of the CMPL file in that the error or warning occurs

Returns:
CMPL file name r CmplData file name

setFile

protected void setFile(java.lang.String file)
Setter for the file name Used by CMPL

Parameters:
file - file name

line

public java.lang.String line()
Returns the line in the CMPL file in that the error or warning occurs

Returns:
line

setLine

protected void setLine(java.lang.String line)
Setter fpr the line Used by CMPL

Parameters:
line - line

description

public java.lang.String description()
Returns the a description of the error or warning message

Returns:
description of the error or warning

setDesrciption

protected void setDesrciption(java.lang.String description)