📄 generatedbytecode.java
字号:
/* Derby - Class org.apache.derby.iapi.services.loader.GeneratedByteCode Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */package org.apache.derby.iapi.services.loader;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.services.context.Context;/** Generated classes must implement this interface.*/public interface GeneratedByteCode { /** Initialize the generated class from a context. Called by the class manager just after creating the instance of the new class. */ public void initFromContext(Context context); /** Set the Generated Class. Call by the class manager just after calling initFromContext. */ public void setGC(GeneratedClass gc); /** Called by the class manager just after calling setGC(). */ public void postConstructor() throws StandardException; /** Get the GeneratedClass object for this object. */ public GeneratedClass getGC(); public GeneratedMethod getMethod(String methodName) throws StandardException; public Object e0() throws StandardException ; public Object e1() throws StandardException ; public Object e2() throws StandardException ; public Object e3() throws StandardException ; public Object e4() throws StandardException ; public Object e5() throws StandardException ; public Object e6() throws StandardException ; public Object e7() throws StandardException ; public Object e8() throws StandardException ; public Object e9() throws StandardException ;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -