You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pe...@apache.org on 2014/10/13 23:16:14 UTC

[2/2] git commit: [flex-asjs] [refs/heads/develop] - JavaScript version of axis changes that use flex.core.graphics for renderer axis and tick marks.

JavaScript version of axis changes that use flex.core.graphics for renderer axis and tick marks.


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/aaf60ed3
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/aaf60ed3
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/aaf60ed3

Branch: refs/heads/develop
Commit: aaf60ed30c84f53d932116225f5bdc7be44dace0
Parents: b5c2ae0
Author: Peter Ent <pe...@apache.org>
Authored: Mon Oct 13 17:16:01 2014 -0400
Committer: Peter Ent <pe...@apache.org>
Committed: Mon Oct 13 17:16:01 2014 -0400

----------------------------------------------------------------------
 .../org/apache/flex/charts/core/IAxisBead.js    | 79 ++++++++++++++++++++
 .../flex/charts/core/IHorizontalAxisBead.js     |  6 +-
 .../flex/charts/core/IVerticalAxisBead.js       |  6 +-
 3 files changed, 89 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/aaf60ed3/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisBead.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisBead.js
new file mode 100644
index 0000000..25d1c3c
--- /dev/null
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IAxisBead.js
@@ -0,0 +1,79 @@
+/**
+ * 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.
+ *
+ * org.apache.flex.charts.core.IAxisBead
+ *
+ * @fileoverview
+ *
+ * @suppress {checkTypes}
+ */
+
+goog.provide('org.apache.flex.charts.core.IAxisBead');
+
+goog.require('org.apache.flex.core.IBead');
+
+
+
+/**
+ * @interface
+ * @extends {org.apache.flex.core.IBead}
+ */
+org.apache.flex.charts.core.IAxisBead = function() {
+};
+
+
+/**
+ * @return {string}
+ */
+org.apache.flex.charts.core.IAxisBead.prototype.get_placement = function() {};
+
+
+/**
+ * @param {string} value
+ */
+org.apache.flex.charts.core.IAxisBead.prototype.set_placement = function(value) {};
+
+
+/**
+ * @return {Object}
+ */
+org.apache.flex.charts.core.IAxisBead.prototype.get_axisStroke = function() {};
+
+
+/**
+ * @param {Object} value
+ */
+org.apache.flex.charts.core.IAxisBead.prototype.set_axisStroke = function(value) {};
+
+
+/**
+ * @return {Object}
+ */
+org.apache.flex.charts.core.IAxisBead.prototype.get_tickStroke = function() {};
+
+
+/**
+ * @param {Object} value
+ */
+org.apache.flex.charts.core.IAxisBead.prototype.set_tickStroke = function(value) {};
+
+
+/**
+ * Metadata
+ *
+ * @type {Object.<string, Array.<Object>>}
+ */
+org.apache.flex.charts.core.IAxisBead.prototype.FLEXJS_CLASS_INFO = {
+    names: [{ name: 'IAxisBead', qName: 'org.apache.flex.charts.core.IAxisBead'}],
+    interfaces: [org.apache.flex.core.IBead]
+  };

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/aaf60ed3/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IHorizontalAxisBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IHorizontalAxisBead.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IHorizontalAxisBead.js
index 0b0cf7b..f397df3 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IHorizontalAxisBead.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IHorizontalAxisBead.js
@@ -20,10 +20,13 @@
 
 goog.provide('org.apache.flex.charts.core.IHorizontalAxisBead');
 
+goog.require('org.apache.flex.charts.core.IAxisBead');
+
 
 
 /**
  * @interface
+ * @extends {org.apache.flex.charts.core.IAxisBead}
  */
 org.apache.flex.charts.core.IHorizontalAxisBead = function() {
 };
@@ -35,7 +38,8 @@ org.apache.flex.charts.core.IHorizontalAxisBead = function() {
  * @type {Object.<string, Array.<Object>>}
  */
 org.apache.flex.charts.core.IHorizontalAxisBead.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IHorizontalAxisBead', qName: 'org.apache.flex.charts.core.IHorizontalAxisBead'}]
+    names: [{ name: 'IHorizontalAxisBead', qName: 'org.apache.flex.charts.core.IHorizontalAxisBead'}],
+    interfaces: [org.apache.flex.charts.core.IAxisBead]
   };
 
 

http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/aaf60ed3/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IVerticalAxisBead.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IVerticalAxisBead.js b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IVerticalAxisBead.js
index 5460719..5bdec4f 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IVerticalAxisBead.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/charts/core/IVerticalAxisBead.js
@@ -20,10 +20,13 @@
 
 goog.provide('org.apache.flex.charts.core.IVerticalAxisBead');
 
+goog.require('org.apache.flex.charts.core.IAxisBead');
+
 
 
 /**
  * @interface
+ * @extends {org.apache.flex.charts.core.IAxisBead}
  */
 org.apache.flex.charts.core.IVerticalAxisBead = function() {
 };
@@ -35,7 +38,8 @@ org.apache.flex.charts.core.IVerticalAxisBead = function() {
  * @type {Object.<string, Array.<Object>>}
  */
 org.apache.flex.charts.core.IVerticalAxisBead.prototype.FLEXJS_CLASS_INFO = {
-    names: [{ name: 'IVerticalAxisBead', qName: 'org.apache.flex.charts.core.IVerticalAxisBead'}]
+    names: [{ name: 'IVerticalAxisBead', qName: 'org.apache.flex.charts.core.IVerticalAxisBead'}],
+    interfaces: [org.apache.flex.charts.core.IAxisBead]
   };