69707172737475
* @exception CSSException if this exception is not supported. */ public CombinatorCondition createOrCondition(Condition first, Condition second) throws CSSException { throw new CSSException(CSSException.SAC_NOT_SUPPORTED_ERR); }
81828384858687
* @return A negative condition * @exception CSSException if this exception is not supported. */ public NegativeCondition createNegativeCondition(Condition condition) throws CSSException { throw new CSSException(CSSException.SAC_NOT_SUPPORTED_ERR); }
101102103104105106107
*/ public PositionalCondition createPositionalCondition(int position, boolean typeNode, boolean type) throws CSSException { throw new CSSException(CSSException.SAC_NOT_SUPPORTED_ERR); }
121122123124125126127128129130
String namespaceURI, boolean specified, String value) throws CSSException { if ((namespaceURI != null) || specified) { throw new CSSException(CSSException.SAC_NOT_SUPPORTED_ERR); } else { return new AttributeConditionImpl(localName, value); } }
168169170171172173174175176177
String namespaceURI, boolean specified, String value) throws CSSException { if ((namespaceURI != null) || specified) { throw new CSSException(CSSException.SAC_NOT_SUPPORTED_ERR); } else { return new OneOfAttributeConditionImpl(localName, value); } }
191192193194195196197198199200
String namespaceURI, boolean specified, String value) throws CSSException { if ((namespaceURI != null) || specified) { throw new CSSException(CSSException.SAC_NOT_SUPPORTED_ERR); } else { return new BeginHyphenAttributeConditionImpl(localName, value); } }
235236237238239240241
* * @return A "only one" child condition * @exception CSSException if this exception is not supported. */ public Condition createOnlyChildCondition() throws CSSException { throw new CSSException(CSSException.SAC_NOT_SUPPORTED_ERR); }
245246247248249250251
* * @return A "only one" type condition * @exception CSSException if this exception is not supported. */ public Condition createOnlyTypeCondition() throws CSSException { throw new CSSException(CSSException.SAC_NOT_SUPPORTED_ERR); }
257258259260261262263
* @return A content condition * @exception CSSException if this exception is not supported. */ public ContentCondition createContentCondition(String data) throws CSSException { throw new CSSException(CSSException.SAC_NOT_SUPPORTED_ERR); }
54555657585960
* ConditionFactory#createOrCondition(Condition,Condition)}. */ public CombinatorCondition createOrCondition(Condition first, Condition second) throws CSSException { throw new CSSException("Not implemented in CSS2"); }