|
What this is
Other links
The source code
/*****************************************************************************
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License Version
* 1.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is available at http://www.sun.com/
* The Original Code is the CVS Client Library.
* The Initial Developer of the Original Code is Robert Greig.
* Portions created by Robert Greig are Copyright (C) 2000.
* All Rights Reserved.
* Contributor(s): Robert Greig.
*****************************************************************************/
package org.netbeans.lib.cvsclient.event;
/**
* An event sent from the server to indicate that a message should be
* displayed to the user
* @author Robert Greig
*/
public class MessageEvent extends CVSEvent {
/**
* Holds value of property message.
*/
private String message;
/**
* Whether the message is an error message
*/
private boolean error;
/** Holds value of property tagged. */
private boolean tagged;
/**
* Construct a MessageEvent
* @param source the source of the event
* @param message the message text
* @param isError true if the message is an error message (i.e. intended
* for stderr rather than stdout), false otherwise
*/
public MessageEvent(Object source, String message, boolean isError) {
super(source);
setMessage(message);
setError(isError);
setTagged(false);
}
/**
* Construct a MessageEvent with no message text
* @param source the source of the event
*/
public MessageEvent(Object source) {
this(source, null, false);
}
/**
* Getter for property message.
* @return Value of property message.
*/
public String getMessage() {
return message;
}
/**
* Setter for property message.
* @param message New value of property message.
*/
public void setMessage(String message) {
this.message = message;
}
/**
* Get whether the message should be displayed in stderr
* @return true if the message should be sent to stderr, false otherwise
*/
public boolean isError() {
return error;
}
/**
* Set whether the message should go to stderr
* @param error true if the message is an error message, false otherwise
*/
public void setError(boolean error) {
this.error = error;
}
/**
* Fire the event to the event listener. Subclasses should call the
* appropriate method on the listener to dispatch this event.
* @param listener the event listener
*/
protected void fireEvent(CVSListener listener) {
listener.messageSent(this);
}
/** Getter for property tagged.
* @return Value of property tagged.
*/
public boolean isTagged() {
return tagged;
}
/** Setter for property tagged.
* @param tagged New value of property tagged.
*/
public void setTagged(boolean tagged) {
this.tagged = tagged;
}
/**
* Parses the tagged message using the specified buffer.
* @returns != null, if the line is finished and could be processed
*/
public static String parseTaggedMessage(StringBuffer taggedLineBufferNotNull, String taggedMessage) {
String line = taggedMessage;
if (line.charAt(0) == '+' || line.charAt(0) == '-') {
return null;
}
String result = null;
if (line.equals("newline")) {//NOI18N
result = taggedLineBufferNotNull.toString();
taggedLineBufferNotNull.setLength(0);
}
int index = line.indexOf(' ');
if (index > 0) {
taggedLineBufferNotNull.append(line.substring(index + 1));
}
return result;
}
}
|
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.