InterceptFieldEnabled.java revision 674060f01e9090cd21b3c5656cc3204912ad17a6
1bcc6eddd335e97d49ed2ef3a1440f94d58dce12dJon Smirl/*
2adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell * Copyright 2003 The Apache Software Foundation
3adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell *
4adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell *  Licensed under the Apache License, Version 2.0 (the "License");
5adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell * you may not use this file except in compliance with the License.
6adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell * You may obtain a copy of the License at
7adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell *
8adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell *      http://www.apache.org/licenses/LICENSE-2.0
9adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell *
10adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell *  Unless required by applicable law or agreed to in writing, software
11adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell * distributed under the License is distributed on an "AS IS" BASIS,
12adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell * See the License for the specific language governing permissions and
14adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell * limitations under the License.
15adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell */
16adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwellpackage org.mockito.cglib.transform.impl;
17adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell
18adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwellpublic interface InterceptFieldEnabled {
19adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell    void setInterceptFieldCallback(InterceptFieldCallback callback);
20adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell    InterceptFieldCallback getInterceptFieldCallback();
21adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell}
22adbec39bbf671ad80f6c557801e274cac0d305faKeith Whitwell