blob: 61a6f7ad4f6bc6dfcfc3c616c21399204a9ed1a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
/*
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.service.protocol.whiteboardobjects;
import net.java.sip.communicator.service.protocol.WhiteboardPoint;
/**
* Used to access the content of instant whiteboard objects that are sent or
* received via the WhiteboardOperationSet.
*
* @author Julien Waechter
*/
public interface WhiteboardObjectText extends WhiteboardObject
{
/**
* A type string constant indicating that an object is of type text.
*/
public static final String NAME = "WHITEBOARDOBJECTTEXT";
/**
* Returns the coordinates of this whiteboard object.
*
* @return the coordinates of this object.
*/
public WhiteboardPoint getWhiteboardPoint ();
/**
* Sets the coordinates of this whiteboard object.
*
* @param whiteboardPoint the coordinates of this object.
*/
public void setWhiteboardPoint (WhiteboardPoint whiteboardPoint);
/**
* Returns the WhiteboardObjectText's text.
*
* @return the WhiteboardObjectText's text.
*/
public String getText();
/**
* Sets the WhiteboardObjectText's text.
*
* @param text the new WhiteboardObjectText's text.
*/
public void setText(String text);
/**
* Returns the WhiteboardObjectText's font size.
*
* @return the WhiteboardObjectText's font size.
*/
public int getFontSize();
/**
* Sets the WhiteboardObjectText's font size.
*
* @param fontSize the new WhiteboardObjectText's font size.
*/
public void setFontSize(int fontSize);
/**
* Returns the WhiteboardObjectText's font name.
* (By default Dialog)
*
* @return the new WhiteboardObjectText's font name.
*/
public String getFontName();
/**
* Sets the WhiteboardObjectText's font name.
*
* @param fontName the new WhiteboardObjectText's font name.
*/
public void setFontName(String fontName);
}
|