update copyright
[fedora-idea.git] / xml / openapi / src / com / intellij / patterns / XmlPatterns.java
bloba675bc410c6cb6016ef82a8b1216f4cd520d034f
1 /*
2 * Copyright 2000-2009 JetBrains s.r.o.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package com.intellij.patterns;
18 import com.intellij.psi.xml.XmlAttribute;
19 import org.jetbrains.annotations.NonNls;
21 /**
22 * @author peter
24 public class XmlPatterns extends PlatformPatterns {
25 public static XmlFilePattern.Capture xmlFile() {
26 return new XmlFilePattern.Capture();
29 public static XmlAttributeValuePattern xmlAttributeValue(ElementPattern<? extends XmlAttribute> attributePattern) {
30 return xmlAttributeValue().withParent(attributePattern);
33 public static XmlAttributeValuePattern xmlAttributeValue() {
34 return new XmlAttributeValuePattern();
37 public static XmlNamedElementPattern.XmlAttributePattern xmlAttribute(@NonNls String localName) {
38 return xmlAttribute().withLocalName(localName);
41 public static XmlNamedElementPattern.XmlAttributePattern xmlAttribute() {
42 return new XmlNamedElementPattern.XmlAttributePattern();
45 public static XmlTagPattern.Capture xmlTag() {
46 return new XmlTagPattern.Capture();
49 public static XmlElementPattern.XmlTextPattern xmlText() {
50 return new XmlElementPattern.XmlTextPattern();