ValueParameterDescriptor must implement Annotated

This commit is contained in:
Alex Tkachman
2012-02-01 10:03:30 +02:00
parent 745d1658aa
commit 4a86f347b1
@@ -2,12 +2,13 @@ package org.jetbrains.jet.lang.descriptors;
import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable; import org.jetbrains.annotations.Nullable;
import org.jetbrains.jet.lang.descriptors.annotations.Annotated;
import org.jetbrains.jet.lang.types.JetType; import org.jetbrains.jet.lang.types.JetType;
/** /**
* @author abreslav * @author abreslav
*/ */
public interface ValueParameterDescriptor extends VariableDescriptor { public interface ValueParameterDescriptor extends VariableDescriptor, Annotated {
/** /**
* Returns the 0-based index of the value parameter in the parameter list of its containing function. * Returns the 0-based index of the value parameter in the parameter list of its containing function.
* *