Package jadex.micro.benchmarks
Class BenchmarkMessage
- java.lang.Object
- 
- jadex.micro.benchmarks.BenchmarkMessage
 
- 
 public class BenchmarkMessage extends java.lang.Object
- 
- 
Field SummaryFields Modifier and Type Field Description protected booleanconfidentialThe confidential flag.protected java.lang.StringtextThe message text.
 - 
Constructor SummaryConstructors Constructor Description BenchmarkMessage()Create a new message.BenchmarkMessage(java.lang.String text, boolean confidential)Create a new message.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetText()Get the text.booleanisConfidential()Set the confidential flag.voidsetConfidential(boolean confidential)Set the confidential flag.voidsetText(java.lang.String text)Set the text.
 
- 
- 
- 
Method Detail- 
getTextpublic java.lang.String getText() Get the text.- Returns:
- The text.
 
 - 
setTextpublic void setText(java.lang.String text) Set the text.- Parameters:
- text- The text to set.
 
 - 
isConfidentialpublic boolean isConfidential() Set the confidential flag.- Returns:
- The confidential.
 
 - 
setConfidentialpublic void setConfidential(boolean confidential) Set the confidential flag.- Parameters:
- confidential- the confidential to set.
 
 
- 
 
-