Added type for new emitter class Signed-off-by: Erik de Bruin <[email protected]>
Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/4d778fdd Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/4d778fdd Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/4d778fdd Branch: refs/heads/feature/flexmojos-tests Commit: 4d778fdda9c33a959d8c639579a11fe38c7804c1 Parents: 76d2716 Author: Erik de Bruin <[email protected]> Authored: Tue Oct 21 14:28:12 2014 +0200 Committer: Erik de Bruin <[email protected]> Committed: Thu Oct 23 19:42:52 2014 +0200 ---------------------------------------------------------------------- .../codegen/js/vf2js/IJSVF2JSEmitter.java | 30 ++++++++++++++++++++ 1 file changed, 30 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/4d778fdd/compiler.jx/src/org/apache/flex/compiler/codegen/js/vf2js/IJSVF2JSEmitter.java ---------------------------------------------------------------------- diff --git a/compiler.jx/src/org/apache/flex/compiler/codegen/js/vf2js/IJSVF2JSEmitter.java b/compiler.jx/src/org/apache/flex/compiler/codegen/js/vf2js/IJSVF2JSEmitter.java new file mode 100644 index 0000000..cd4cacd --- /dev/null +++ b/compiler.jx/src/org/apache/flex/compiler/codegen/js/vf2js/IJSVF2JSEmitter.java @@ -0,0 +1,30 @@ +/* + * + * 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.apache.flex.compiler.codegen.js.vf2js; + +import org.apache.flex.compiler.codegen.js.goog.IJSGoogEmitter; + +/** + * @author Erik de Bruin + */ +public interface IJSVF2JSEmitter extends IJSGoogEmitter +{ + +}
