update copyright
[fedora-idea.git] / xml / impl / src / com / intellij / xml / util / documentation / HtmlTagDescriptor.java
blob935ab41a5e98274cb35a79ca29980975bc5f8412
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.xml.util.documentation;
18 /**
19 * Created by IntelliJ IDEA.
20 * User: maxim
21 * Date: 24.12.2004
22 * Time: 23:54:27
23 * To change this template use File | Settings | File Templates.
25 class HtmlTagDescriptor extends EntityDescriptor {
26 boolean isHasStartTag() {
27 return hasStartTag;
30 void setHasStartTag(boolean hasStartTag) {
31 this.hasStartTag = hasStartTag;
34 boolean isHasEndTag() {
35 return hasEndTag;
38 void setHasEndTag(boolean hasEndTag) {
39 this.hasEndTag = hasEndTag;
42 boolean isEmpty() {
43 return empty;
46 void setEmpty(boolean empty) {
47 this.empty = empty;
50 private boolean hasStartTag;
51 private boolean hasEndTag;
52 private boolean empty;