blob: 78f711412294e198167c415df4b300c3e037b533 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.netbeans.modules.php.editor.index;
import java.util.Collections;
import java.util.Set;
import org.netbeans.api.annotations.common.NonNull;
import org.netbeans.modules.csl.api.ElementHandle;
import org.netbeans.modules.csl.api.ElementKind;
import org.netbeans.modules.csl.api.Modifier;
import org.netbeans.modules.csl.api.OffsetRange;
import org.netbeans.modules.csl.spi.ParserResult;
import org.netbeans.modules.php.api.util.FileUtils;
import org.openide.filesystems.FileObject;
/**
*
* @author Tor Norbye
*/
public abstract class PHPElement implements Element {
@Override
public abstract String getName();
@Override
public abstract ElementKind getKind();
@NonNull
@Override
public String getMimeType() {
return FileUtils.PHP_MIME_TYPE;
}
@Override
public boolean signatureEquals(ElementHandle handle) {
// XXX TODO
return false;
}
@Override
public FileObject getFileObject() {
return null;
}
@Override
public Set<Modifier> getModifiers() {
return Collections.emptySet();
}
@Override
public String getIn() {
return null;
}
@Override
public OffsetRange getOffsetRange(ParserResult result) {
return OffsetRange.NONE;
}
}