update copyright
[fedora-idea.git] / java / idea-ui / src / com / intellij / openapi / roots / ui / configuration / libraryEditor / JavadocElement.java
blob6eab4f94798c3b360879b8a0f72a0c695a1a70a2
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.openapi.roots.ui.configuration.libraryEditor;
18 import com.intellij.ide.util.treeView.NodeDescriptor;
19 import com.intellij.openapi.roots.JavadocOrderRootType;
20 import com.intellij.openapi.roots.OrderRootType;
22 class JavadocElement extends LibraryTableTreeContentElement {
23 private final LibraryElement myParent;
25 public JavadocElement(LibraryElement parent) {
26 myParent = parent;
29 public LibraryElement getParent() {
30 return myParent;
33 public OrderRootType getOrderRootType() {
34 return JavadocOrderRootType.getInstance();
37 public NodeDescriptor createDescriptor(final NodeDescriptor parentDescriptor, final LibraryTableEditor parentEditor) {
38 return new JavadocElementDescriptor(parentDescriptor, this);
41 public boolean equals(Object o) {
42 if (this == o) return true;
43 if (!(o instanceof JavadocElement)) return false;
45 final JavadocElement javadocElement = (JavadocElement)o;
47 if (!myParent.equals(javadocElement.myParent)) return false;
49 return true;
52 public int hashCode() {
53 return myParent.hashCode();