求大神帮忙!!!1请使用 -Xlint:deprecation 重新编译。

源程序:
public class ActivityMain extends ActivityFrame {

private GirdView gvAppGrid;
private AdapterAppGrid mAdapterAppGrid;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    AppendMainBody(R.layout.main_body);
             public void InitVariable() {
    mAdapterAppGrid= new AdapterAppGrid(this);

}

public void InitView() {
    gvAppGrid = (GridView) findViewById(R.id.gvAppGrid);

}

public void InitListeners() {

}

public void BindData() {
    gvAppGrid.setAdapter(mAdapterAppGrid);

}

log错误提示:

D:\AndroidStudioProjects\GoDutch\app\src\main\java\com\example\rong\godutch\Activity\ActivityMain.java
Error:(15, 13) 错误: 找不到符号
符号: 类 GirdView
位置: 类 ActivityMain
注: D:\AndroidStudioProjects\GoDutch\app\src\main\java\com\example\rong\godutch\Activity\ActivityFrame.java使用或覆盖了已过时的 API。
注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。
1 个错误
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.

Compilation failed; see the compiler error output for details.

http://www.th7.cn/Program/java/201207/84647.shtml