Skip to content

Commit 3f12bba

Browse files
committed
Fixed comment formatting.
1 parent 75563ba commit 3f12bba

17 files changed

+35
-103
lines changed

src-gwt/org/opencms/ade/galleries/client/ui/CmsResultsBackwardsScrollHandler.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

src-gwt/org/opencms/gwt/client/ui/I_CmsModelSelectHandler.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

src/org/opencms/ade/configuration/CmsADEConfigData.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

src/org/opencms/ade/configuration/CmsFunctionReference.java

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public
@@ -41,12 +37,12 @@ public class CmsFunctionReference implements I_CmsConfigurationObject<CmsFunctio
4137
/** The function reference name. */
4238
private String m_name;
4339

44-
/** The function resource structure id. */
45-
private CmsUUID m_structureId;
46-
4740
/** A number used for sorting the function references.<p>*/
4841
private int m_order;
4942

43+
/** The function resource structure id. */
44+
private CmsUUID m_structureId;
45+
5046
/**
5147
* Creates a new function reference.<p>
5248
*

src/org/opencms/ade/galleries/shared/CmsGallerySearchScope.java

+13-17
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public
@@ -38,33 +34,33 @@
3834
* An enum that represents the possible search scope choices in the ADE gallery search tab.<p>
3935
*/
4036
public enum CmsGallerySearchScope {
37+
/** Search only in the shared folder. */
38+
shared(false, false, true, "GUI_SCOPE_SHARED_0"),
39+
4140
/** Search in the current site. */
4241
site(true, false, false, "GUI_SCOPE_SITE_0"),
4342

44-
/** Search in the current subsite. */
45-
subSite(false, true, false, "GUI_SCOPE_SUBSITE_0"),
46-
4743
/** Search in the current site and the shared folder. */
4844
siteShared(true, false, true, "GUI_SCOPE_SITESHARED_0"),
4945

46+
/** Search in the current subsite. */
47+
subSite(false, true, false, "GUI_SCOPE_SUBSITE_0"),
48+
5049
/** Search in the current subsite and the shared folder. */
51-
subSiteShared(false, true, true, "GUI_SCOPE_SUBSITESHARED_0"),
50+
subSiteShared(false, true, true, "GUI_SCOPE_SUBSITESHARED_0");
5251

53-
/** Search only in the shared folder. */
54-
shared(false, false, true, "GUI_SCOPE_SHARED_0");
52+
/** The localization key.*/
53+
private final String m_key;
54+
55+
/** If true, search in the shared folder. */
56+
private final boolean m_shared;
5557

5658
/** If true, search in the current site. */
5759
private final boolean m_site;
5860

5961
/** If true, search in the current sub-site. */
6062
private final boolean m_subSite;
6163

62-
/** If true, search in the shared folder. */
63-
private final boolean m_shared;
64-
65-
/** The localization key.*/
66-
private final String m_key;
67-
6864
/**
6965
* Default constructor needed for serialization.<p>
7066
*/

src/org/opencms/file/types/CmsResourceTypeXmlAdeConfiguration.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

src/org/opencms/gwt/shared/CmsMenuCommandParameters.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

src/org/opencms/gwt/shared/CmsPrepareEditResponse.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

src/org/opencms/jsp/util/CmsDynamicFunctionFormatWrapper.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

src/org/opencms/widgets/CmsTypeComboWidget.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

src/org/opencms/workplace/explorer/menu/CmsMirContainerPageActiveAndFileAvailable.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

src/org/opencms/xml/containerpage/CmsXmlDynamicFunctionHandler.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

test/org/opencms/ade/configuration/AllTests.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

test/org/opencms/ade/configuration/CmsTestConfigData.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

test/org/opencms/ade/configuration/TestConfig.java

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public
@@ -66,15 +62,15 @@
6662
*/
6763
public class TestConfig extends OpenCmsTestCase {
6864

69-
/** Empty property definition list. **/
70-
protected static final List<CmsPropertyConfig> NO_PROPERTIES = Collections.<CmsPropertyConfig> emptyList();
71-
7265
/** Empty detail page list. **/
7366
protected static final List<CmsDetailPageInfo> NO_DETAILPAGES = Collections.<CmsDetailPageInfo> emptyList();
7467

7568
/** Empty model page list. **/
7669
protected static final List<CmsModelPageConfig> NO_MODEL_PAGES = Collections.<CmsModelPageConfig> emptyList();
7770

71+
/** Empty property definition list. **/
72+
protected static final List<CmsPropertyConfig> NO_PROPERTIES = Collections.<CmsPropertyConfig> emptyList();
73+
7874
/** Empty resource type list. **/
7975
protected static final List<CmsResourceTypeConfig> NO_TYPES = Collections.<CmsResourceTypeConfig> emptyList();
8076

test/org/opencms/ade/configuration/TestLiveConfig.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

test/org/opencms/test/I_CmsLogHandler.java

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
/*
2-
* File : $Source$
3-
* Date : $Date$
4-
* Version: $Revision$
5-
*
62
* This library is part of OpenCms -
73
* the Open Source Content Management System
84
*
9-
* Copyright (C) 2002 - 2011 Alkacon Software (http://www.alkacon.com)
5+
* Copyright (C) Alkacon Software (http://www.alkacon.com)
106
*
117
* This library is free software; you can redistribute it and/or
128
* modify it under the terms of the GNU Lesser General Public

0 commit comments

Comments
 (0)