Edit C:\Program Files\Java\jdk1.8.0_121\com\sun\javafx\css\Declaration.java
/* * Copyright (c) 2008, 2014, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.javafx.css; import com.sun.javafx.css.converters.URLConverter; import javafx.css.ParsedValue; import javafx.css.StyleConverter; import javafx.css.StyleOrigin; import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOException; final public class Declaration { final String property; final ParsedValueImpl parsedValue; final boolean important; // The Rule to which this Declaration belongs. Rule rule; public Declaration(final String propertyName, final ParsedValueImpl parsedValue, final boolean important) { this.property = propertyName; this.parsedValue = parsedValue; this.important = important; if (propertyName == null) { throw new IllegalArgumentException("propertyName cannot be null"); } if (parsedValue == null) { throw new IllegalArgumentException("parsedValue cannot be null"); } } /** @return ParsedValue contains the parsed declaration. */ public ParsedValue getParsedValue() { return parsedValue; } /** @return ParsedValue contains the parsed declaration. */ ParsedValueImpl getParsedValueImpl() { return parsedValue; } /** @return The CSS property name */ public String getProperty() { return property; } /** @return The Rule to which this Declaration belongs. */ public Rule getRule() { return rule; } public boolean isImportant() { return important; } /** Helper */ private StyleOrigin getOrigin() { Rule rule = getRule(); if (rule != null) { return rule.getOrigin(); } return null; } /** * One declaration is the equal to another regardless of the Rule to which * the Declaration belongs. Only the property, value and importance are * considered. */ @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final Declaration other = (Declaration) obj; if (this.important != other.important) { return false; } if (this.getOrigin() != other.getOrigin()) { return false; } if ((this.property == null) ? (other.property != null) : !this.property.equals(other.property)) { return false; } if (this.parsedValue != other.parsedValue && (this.parsedValue == null || !this.parsedValue.equals(other.parsedValue))) { return false; } return true; } @Override public int hashCode() { int hash = 5; hash = 89 * hash + (this.property != null ? this.property.hashCode() : 0); hash = 89 * hash + (this.parsedValue != null ? this.parsedValue.hashCode() : 0); hash = 89 * hash + (this.important ? 1 : 0); return hash; } @Override public String toString() { StringBuilder sbuf = new StringBuilder(property); sbuf.append(": "); sbuf.append(parsedValue); if (important) sbuf.append(" !important"); return sbuf.toString(); } // // RT-21964 // // We know when the .css file is parsed what the stylesheet URL is, // but that might not be the URL of the deployed file. So for URL // types, the parser inserts a null placeholder for the URL and we // fix it up here. This method is called from Rule#setStylesheet // and from Rule#declarations onChanged method. // void fixUrl(String stylesheetUrl) { if (stylesheetUrl == null) return; final StyleConverter converter = parsedValue.getConverter(); // code is tightly coupled to the way URLConverter works if (converter == URLConverter.getInstance()) { final ParsedValue[] values = (ParsedValue[])parsedValue.getValue(); values[1] = new ParsedValueImpl<String,String>(stylesheetUrl, null); } else if (converter == URLConverter.SequenceConverter.getInstance()) { final ParsedValue<ParsedValue[], String>[] layers = (ParsedValue<ParsedValue[], String>[])parsedValue.getValue(); for (int layer = 0; layer < layers.length; layer++) { final ParsedValue[] values = layers[layer].getValue(); values[1] = new ParsedValueImpl<String,String>(stylesheetUrl, null); } } } final void writeBinary(final DataOutputStream os, final StringStore stringStore) throws IOException { os.writeShort(stringStore.addString(getProperty())); getParsedValueImpl().writeBinary(os,stringStore); os.writeBoolean(isImportant()); } static Declaration readBinary(int bssVersion, DataInputStream is, String[] strings) throws IOException { final String propertyName = strings[is.readShort()]; final ParsedValueImpl parsedValue = ParsedValueImpl.readBinary(bssVersion,is,strings); final boolean important = is.readBoolean(); return new Declaration(propertyName, parsedValue, important); } }
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de