001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041: package org.netbeans.modules.visualweb.propertyeditors.css.model;
042:
043: import com.sun.rave.designtime.DesignProperty;
044: import com.sun.rave.designtime.markup.MarkupDesignBean;
045: import com.sun.rave.designtime.markup.MarkupDesignContext;
046: import java.util.Iterator;
047: import java.util.Map;
048: import java.util.StringTokenizer;
049:
050: /**
051: * Parser to parse the Style properties
052: * @author Winston Prakash
053: */
054: public class CssStyleParser {
055:
056: CssStyleData cssStyleDate = null;
057:
058: DesignProperty designProperty = null;
059:
060: public CssStyleParser() {
061: this (new CssStyleData());
062: }
063:
064: public CssStyleParser(CssStyleData styleDate) {
065: this .cssStyleDate = styleDate;
066: }
067:
068: public CssStyleParser(CssStyleData styleDate,
069: DesignProperty designProperty) {
070: this .cssStyleDate = styleDate;
071: this .designProperty = designProperty;
072: }
073:
074: /**
075: * Parse the CSS Style String in to separate CSS Style properties
076: */
077: public CssStyleData parse(String cssStyleString) {
078: // If the design property is not null, then parse the CSS style String
079: // using DesignContext.convertCssStyleToMap
080: if (designProperty != null) {
081: cssStyleDate.setDesignProperty(designProperty);
082: MarkupDesignBean liveBean = (MarkupDesignBean) designProperty
083: .getDesignBean();
084: MarkupDesignContext liveContext = (MarkupDesignContext) liveBean
085: .getDesignContext();
086: Map styleMap = liveContext
087: .convertCssStyleToMap(cssStyleString);
088: for (Iterator iter = styleMap.keySet().iterator(); iter
089: .hasNext();) {
090: String propertyName = (String) iter.next();
091: String propertyValue = (String) styleMap
092: .get(propertyName);
093: cssStyleDate.addProperty(propertyName, propertyValue);
094: }
095: } else {
096: cssStyleString = cssStyleString.replaceAll(""", "\""); //NOI18N
097: StringTokenizer styleProperties = new StringTokenizer(
098: cssStyleString, ";"); //NOI18N
099: while (styleProperties.hasMoreTokens()) {
100: String styleProperty = styleProperties.nextToken();
101: String propertyName = styleProperty.substring(0,
102: styleProperty.indexOf(":")).trim(); //NOI18N
103: String propertyValue = styleProperty.substring(
104: styleProperty.indexOf(":") + 1).trim(); //NOI18N
105: cssStyleDate.addProperty(propertyName, propertyValue);
106: }
107: }
108: return cssStyleDate;
109: }
110:
111: public static void main(String[] args) {
112: String cssStyleString = "background-color: red; border-left-color: rgb(255, 204, 204); border-right-color: rgb(255, 204, 204); border-top-color: rgb(255, 255, 102); border-bottom-color: rgb(255, 204, 204); border-left-style: double; border-right-style: double; border-top-style: solid; border-bottom-style: double; border-left-width: 44px; border-right-width: 44px; border-top-width: 44px; border-bottom-width: 44px; margin-left: 10px; margin-right: 10px; margin-top: 10px; margin-bottom: 10px; left: 72px; top: 48px; padding-left: 10px; padding-right: 10px; padding-top: 10px; padding-bottom: 10px; position: absolute "; //NOI18N
113: System.out.println(cssStyleString);
114: CssStyleParser styleParser = new CssStyleParser();
115: CssStyleData styleData = styleParser.parse(cssStyleString);
116: System.out.println(styleData.toString());
117: }
118:
119: }
|