HadoopPathPage.java
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:3k
源码类别:

网格计算

开发平台:

Java

  1. /**
  2.  * Licensed to the Apache Software Foundation (ASF) under one
  3.  * or more contributor license agreements.  See the NOTICE file
  4.  * distributed with this work for additional information
  5.  * regarding copyright ownership.  The ASF licenses this file
  6.  * to you under the Apache License, Version 2.0 (the
  7.  * "License"); you may not use this file except in compliance
  8.  * with the License.  You may obtain a copy of the License at
  9.  *
  10.  *     http://www.apache.org/licenses/LICENSE-2.0
  11.  *
  12.  * Unless required by applicable law or agreed to in writing, software
  13.  * distributed under the License is distributed on an "AS IS" BASIS,
  14.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15.  * See the License for the specific language governing permissions and
  16.  * limitations under the License.
  17.  */
  18. package org.apache.hadoop.eclipse.server;
  19. import org.eclipse.core.runtime.IProgressMonitor;
  20. import org.eclipse.swt.graphics.Image;
  21. import org.eclipse.swt.widgets.Composite;
  22. import org.eclipse.ui.IEditorInput;
  23. import org.eclipse.ui.IEditorPart;
  24. import org.eclipse.ui.IEditorSite;
  25. import org.eclipse.ui.IPropertyListener;
  26. import org.eclipse.ui.IWorkbenchPartSite;
  27. import org.eclipse.ui.PartInitException;
  28. public class HadoopPathPage implements IEditorPart {
  29.   public IEditorInput getEditorInput() {
  30.     // TODO Auto-generated method stub
  31.     return null;
  32.   }
  33.   public IEditorSite getEditorSite() {
  34.     // TODO Auto-generated method stub
  35.     return null;
  36.   }
  37.   public void init(IEditorSite site, IEditorInput input)
  38.       throws PartInitException {
  39.     // TODO Auto-generated method stub
  40.   }
  41.   public void addPropertyListener(IPropertyListener listener) {
  42.     // TODO Auto-generated method stub
  43.   }
  44.   public void createPartControl(Composite parent) {
  45.     // TODO Auto-generated method stub
  46.   }
  47.   public void dispose() {
  48.     // TODO Auto-generated method stub
  49.   }
  50.   public IWorkbenchPartSite getSite() {
  51.     // TODO Auto-generated method stub
  52.     return null;
  53.   }
  54.   public String getTitle() {
  55.     // TODO Auto-generated method stub
  56.     return null;
  57.   }
  58.   public Image getTitleImage() {
  59.     // TODO Auto-generated method stub
  60.     return null;
  61.   }
  62.   public String getTitleToolTip() {
  63.     // TODO Auto-generated method stub
  64.     return null;
  65.   }
  66.   public void removePropertyListener(IPropertyListener listener) {
  67.     // TODO Auto-generated method stub
  68.   }
  69.   public void setFocus() {
  70.     // TODO Auto-generated method stub
  71.   }
  72.   public Object getAdapter(Class adapter) {
  73.     // TODO Auto-generated method stub
  74.     return null;
  75.   }
  76.   public void doSave(IProgressMonitor monitor) {
  77.     // TODO Auto-generated method stub
  78.   }
  79.   public void doSaveAs() {
  80.     // TODO Auto-generated method stub
  81.   }
  82.   public boolean isDirty() {
  83.     // TODO Auto-generated method stub
  84.     return false;
  85.   }
  86.   public boolean isSaveAsAllowed() {
  87.     // TODO Auto-generated method stub
  88.     return false;
  89.   }
  90.   public boolean isSaveOnCloseNeeded() {
  91.     // TODO Auto-generated method stub
  92.     return false;
  93.   }
  94. }