Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/client/iconservice/TaskbarFavorite.java

Diff revisions: vs.
  @@ -1,24 +1,20 @@
1 1 // This Source Code is in the Public Domain per: http://unlicense.org
2 2 package org.litesoft.GWT.client.iconservice;
3 3
4 - public class TaskbarFavorite
5 - {
4 + public class TaskbarFavorite {
6 5 private String mFactoryRef;
7 6 private String mCurrentFloaterTitle;
8 7
9 - public TaskbarFavorite( String pFactoryRef, String pCurrentFloaterTitle )
10 - {
8 + public TaskbarFavorite( String pFactoryRef, String pCurrentFloaterTitle ) {
11 9 mFactoryRef = pFactoryRef;
12 10 mCurrentFloaterTitle = pCurrentFloaterTitle;
13 11 }
14 12
15 - public String getFactoryRef()
16 - {
13 + public String getFactoryRef() {
17 14 return mFactoryRef;
18 15 }
19 16
20 - public String getCurrentFloaterTitle()
21 - {
17 + public String getCurrentFloaterTitle() {
22 18 return mCurrentFloaterTitle;
23 19 }
24 20 }