1*a046d00fSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*a046d00fSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*a046d00fSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*a046d00fSAndrew Rist  * distributed with this work for additional information
6*a046d00fSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*a046d00fSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*a046d00fSAndrew Rist  * "License"); you may not use this file except in compliance
9*a046d00fSAndrew Rist  * with the License.  You may obtain a copy of the License at
10*a046d00fSAndrew Rist  *
11*a046d00fSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12*a046d00fSAndrew Rist  *
13*a046d00fSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*a046d00fSAndrew Rist  * software distributed under the License is distributed on an
15*a046d00fSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*a046d00fSAndrew Rist  * KIND, either express or implied.  See the License for the
17*a046d00fSAndrew Rist  * specific language governing permissions and limitations
18*a046d00fSAndrew Rist  * under the License.
19*a046d00fSAndrew Rist  *
20*a046d00fSAndrew Rist  *************************************************************/
21*a046d00fSAndrew Rist 
22*a046d00fSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir package com.sun.star.uno;
25cdf0e10cSrcweir 
26cdf0e10cSrcweir 
27cdf0e10cSrcweir import java.lang.reflect.Field;
28cdf0e10cSrcweir 
29cdf0e10cSrcweir /**
30cdf0e10cSrcweir  * The <code>IFieldDescription</code> describes non
31cdf0e10cSrcweir  * method members.
32cdf0e10cSrcweir  *
33cdf0e10cSrcweir  * @deprecated This interface does not cover all the features supported by the
34cdf0e10cSrcweir  * corresponding (unpublished) implementation.  But no client code should need
35cdf0e10cSrcweir  * to access this functionality, anyway.
36cdf0e10cSrcweir  */
37cdf0e10cSrcweir public interface IFieldDescription extends IMemberDescription {
38cdf0e10cSrcweir 	/**
39cdf0e10cSrcweir 	 * Gives the name of this member.
40cdf0e10cSrcweir 	 * <p>
41cdf0e10cSrcweir 	 * @return  the name
42cdf0e10cSrcweir 	 */
getTypeDescription()43cdf0e10cSrcweir 	ITypeDescription getTypeDescription();
44cdf0e10cSrcweir 
45cdf0e10cSrcweir 	/**
46cdf0e10cSrcweir 	 * Gives native java field of this member.
47cdf0e10cSrcweir 	 * <p>
48cdf0e10cSrcweir 	 * @return  the java field
49cdf0e10cSrcweir 	 */
getField()50cdf0e10cSrcweir   	Field getField();
51cdf0e10cSrcweir }
52