001 /*
002 * Copyright 2010-2013 JetBrains s.r.o.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016
017 package org.jetbrains.jet.asJava.wrappers;
018
019 import com.intellij.psi.PsiElement;
020 import com.intellij.psi.impl.compiled.ClsMethodImpl;
021 import com.intellij.psi.impl.java.stubs.PsiMethodStub;
022 import com.intellij.util.IncorrectOperationException;
023 import org.jetbrains.annotations.NotNull;
024 import org.jetbrains.jet.lang.psi.JetDeclaration;
025 import org.jetbrains.jet.lang.resolve.java.JetClsMethod;
026
027 public class JetClsMethodImpl extends ClsMethodImpl implements JetClsMethod {
028 @NotNull
029 private final PsiElement origin;
030
031 public JetClsMethodImpl(@NotNull PsiMethodStub stub, @NotNull PsiElement origin) {
032 super(stub);
033 this.origin = origin;
034 }
035
036 @Override
037 public PsiElement getMirror() {
038 return origin;
039 }
040
041 @NotNull
042 @Override
043 public PsiElement getNavigationElement() {
044 return origin;
045 }
046
047 @Override
048 public JetDeclaration getOrigin() {
049 return (JetDeclaration) origin;
050 }
051
052 @Override
053 public void delete() throws IncorrectOperationException {
054 origin.delete();
055 }
056 }