Sha256: f3ef2c9378cb68a00a0dfa06d51ea08881e7d79b7f614e167857c44a99218a89

Contents?: true

Size: 398 Bytes

Versions: 1

Compression:

Stored size: 398 Bytes

Contents

/*jsl:import coherent*/


/**
  class <%=full_name%>
  
  This is a good place to document your class.
 */
<%= namespace.empty? ? "var " : ""%><%=full_name%>= Class.create(coherent.KVO,
{

    sampleProperty: function()
    {
        return this.__sampleProperty;
    },
    
    setSampleProperty: function(newSampleProperty)
    {
        this.__sampleProperty= newSampleProperty;
    }
    
});

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
coherent-0.6.11 generators/class/templates/@name@.js.erb