active questions tagged mixin - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T23:19:52Z http://stackoverflow.com/feeds/tag/mixin http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1656274/problem-with-mixins-in-a-moosexnonmoose-class 2 Problem with mixins in a MooseX::NonMoose class friedo 2009-11-01T03:08:02Z 2009-11-01T05:31:14Z <p>Consider the following:</p> <pre><code>package MyApp::CGI; use Moose; use MooseX::NonMoose; use Data::Dumper; extends 'CGI::Application'; BEGIN { print "begin isa = " . Dumper \@MyApp::CGI::ISA; }; print "runtime isa = " . Dumper \@MyApp::CGI::ISA; ... </code></pre> <p>The output when this compiles is:</p> <pre><code>begin isa = $VAR1 = [ 'Moose::Object' ]; runtime isa = $VAR1 = [ 'CGI::Application', 'Moose::Object' ]; </code></pre> <p>Why do I care? Because when I try to <code>use</code> a CGI::Application::Plugin::* class, it expects me to be inheriting from <code>CGI::Application</code> at compile-time already. The plugin class tries to call <code>add_callback</code> as a class method on my class, but can't, because my <code>@ISA</code> isn't set up yet.</p> <p>What's the best way to solve this? Would tweaking <code>@ISA</code> manually in a <code>BEGIN</code> block interfere with <code>MooseX::NonMoose</code>? </p> <p><b>Edit</b></p> <p>The following appears to work, but I find it offensive:</p> <pre><code>package MyApp::CGI; use Moose; use MooseX::NonMoose; use base 'CGI::Application'; extends 'CGI::Application'; </code></pre> <p>I don't know enough (or anything, really) about Moose internals to know if this is a good idea.</p> http://stackoverflow.com/questions/1180271/why-does-datamapper-use-mixins-vs-inheritance 2 Why does DataMapper use mixins vs inheritance? cloudhead 2009-07-24T21:34:22Z 2009-08-26T17:02:32Z <p>So I'm just curious about this:</p> <p>DataMapper uses a mixin for its Models</p> <pre><code>class Post include DataMapper::Resource </code></pre> <p>While active-record uses inheritance</p> <pre><code>class Post &lt; ActiveRecord::Base </code></pre> <p>Does anyone know why DataMapper chose to do it that way (or why AR chose not to)?</p> http://stackoverflow.com/questions/587458/implement-mixin-in-java 2 Implement Mixin In Java? Lennie 2009-02-25T19:29:22Z 2009-08-17T00:08:18Z <p>Using Java 6, how can I implement a mixin? It is very easy and possible in Ruby. How can I get similar in Java?</p> http://stackoverflow.com/questions/1282864/ruby-inheritance-vs-mixins 3 ruby inheritance vs mixins Brad Cupit 2009-08-15T21:14:39Z 2009-08-16T09:08:54Z <p>In Ruby, since you can include multiple mixins but only extend one class, it seems like mixins would be preferred over inheritance.</p> <p>My question: if you're writing code which must be extended/included to be useful, why would you ever make it a class? Or put another way, why wouldn't you always make it a module?</p> <p>I can only think of one reason why you'd want a class, and that is if you need to instantiate the class. In the case of ActiveRecord::Base, however, you never instantiate it directly. So shouldn't it have been a module instead?</p> http://stackoverflow.com/questions/425617/groovy-mixins 2 Groovy Mixins? gabriel 2009-01-08T19:50:19Z 2009-08-13T20:42:51Z <p>I'm trying to mix-in a class in my Groovy/Grails app, and I'm using <a href="http://docs.codehaus.org/display/GroovyJSR/Mixins#Mixins-StaticMixing" rel="nofollow">the syntax defined in the docs</a>, but I keep getting an error.</p> <p>I have a domain class that looks like this:</p> <pre><code>class Person { mixin(ImagesMixin) // ... } </code></pre> <p>It compiles fine, but for some reason it won't work. The file containing ImagesMixin is located in my <code>/src/groovy/</code> directory.</p> <p>I've tried it using Groovy versions 1.5.7 and 1.6-RC1 without any luck. Does anyone know what I'm doing wrong?</p> <p>stacktrace:</p> <pre><code>2008-12-30 17:58:25.258::WARN: Failed startup of context org.mortbay.jetty.webapp.WebAppContext@562791{/FinalTransmission,/home/kuccello/Development/workspaces/lifeforce/FinalTransmission/web-app} org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'pluginManager' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.ExceptionInInitializerError at java.security.AccessController.doPrivileged(Native Method) at RunApp_groovy$_run_closure2_closure7.doCall(RunApp_groovy:67) at RunApp_groovy$_run_closure2_closure7.doCall(RunApp_groovy) at Init_groovy$_run_closure6.doCall(Init_groovy:131) at RunApp_groovy$_run_closure2.doCall(RunApp_groovy:66) at RunApp_groovy$_run_closure2.doCall(RunApp_groovy) at RunApp_groovy$_run_closure1.doCall(RunApp_groovy:57) at RunApp_groovy$_run_closure1.doCall(RunApp_groovy) at gant.Gant.dispatch(Gant.groovy:271) at gant.Gant.this$2$dispatch(Gant.groovy) at gant.Gant.invokeMethod(Gant.groovy) at gant.Gant.processTargets(Gant.groovy:436) at gant.Gant.processArgs(Gant.groovy:372) Caused by: java.lang.ExceptionInInitializerError at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:169) at Episode.class$(Episode.groovy) at Episode.&lt;clinit&gt;(Episode.groovy) ... 13 more Caused by: groovy.lang.MissingMethodException: No signature of method: static Person.mixin() is applicable for argument types: (java.lang.Class) values: {class ImagesMixin} at Broadcast.&lt;clinit&gt;(MyClass.groovy:17) ... 17 more 2008-12-30 17:58:25.259::WARN: Nested in org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'pluginManager' defined in ServletContext resource [/WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.ExceptionInInitializerError: groovy.lang.MissingMethodException: No signature of method: Person.mixin() is applicable for argument types: (java.lang.Class) values: {class ImagesMixin} at Broadcast.&lt;clinit&gt;(Person.groovy:17) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:169) at Episode.class$(BelongsToMyClass.groovy) at Episode.&lt;clinit&gt;(BelongsToMyClass.groovy) at java.security.AccessController.doPrivileged(Native Method) at RunApp_groovy$_run_closure2_closure7.doCall(RunApp_groovy:67) at RunApp_groovy$_run_closure2_closure7.doCall(RunApp_groovy) at Init_groovy$_run_closure6.doCall(Init_groovy:131) at RunApp_groovy$_run_closure2.doCall(RunApp_groovy:66) at RunApp_groovy$_run_closure2.doCall(RunApp_groovy) at RunApp_groovy$_run_closure1.doCall(RunApp_groovy:57) at RunApp_groovy$_run_closure1.doCall(RunApp_groovy) at gant.Gant.dispatch(Gant.groovy:271) at gant.Gant.this$2$dispatch(Gant.groovy) at gant.Gant.invokeMethod(Gant.groovy) at gant.Gant.processTargets(Gant.groovy:436) at gant.Gant.processArgs(Gant.groovy:372) 2008-12-30 17:58:25.271::INFO: Started SelectChannelConnector@0.0.0.0:8080 </code></pre> http://stackoverflow.com/questions/1244748/objective-c-category-compared-to-mixins 3 Objective-C category compared to Mixins teabot 2009-08-07T13:39:57Z 2009-08-07T15:59:54Z <p>Is the concept of the Objective-C categories in anyway similar to the concept of mixins? If so: what are the similarities? In not: what are the differences?</p> http://stackoverflow.com/questions/1210565/how-do-i-write-a-hygienic-ruby-mixin 3 How do I write a hygienic Ruby mixin? John 2009-07-31T03:35:06Z 2009-07-31T11:19:32Z <p>Say I'm writing a mixin module that adds functionality to a third-party class. Obviously some of the methods and instance variables I want to make accessible to the third-party class and its clients. These constitute the public interface of the mixin module.</p> <p>But I want certain other methods and instance variables to be encapsulated. I don't want them to be accessible to the class I'm mixing into, and in particular I don't want them to accidentally override, shadow, conflict, or otherwise interfere with the mixee class's methods or instance variables -- either those that may currently exist, or those that may be created in the future if the third-party modifies the class I'm mixing into.</p> <p>What precautions do I need to take, if any, to make sure my mixin is "hygienic" in this way?</p> http://stackoverflow.com/questions/918380/abstract-classes-vs-interfaces-vs-mixins 2 Abstract classes vs. interfaces vs. mixins musicfreak 2009-05-27T22:59:55Z 2009-07-29T09:39:41Z <p>Could someone please explain to me the differences between <strong>abstract classes</strong>, <strong>interfaces</strong>, and <strong>mixins</strong>? I've used each before in my code but I don't know the technical differences. (And yes, I've searched, but everything I found was either too technical or otherwise unhelpful.)</p> http://stackoverflow.com/questions/1085938/how-to-use-the-mixin-tag-in-as3-applications 0 How to use the [mixin] tag in AS3 applications? natorion 2009-07-06T08:16:17Z 2009-07-06T10:07:00Z <p>I have the following two projects in in Flex Builder 3:</p> <ul> <li><p>One AS3 library project (generates a SWC file)</p></li> <li><p>One Flex application project (MXML Application)</p></li> </ul> <p>The MXML Application references to the AS3 library project (Flex build path). So far, so good. I now want to run code automatically when an application uses the AS3 library. The [mixin] tag should do exactly what I need. </p> <p>I followed the instructions from <a href="http://nondocs.blogspot.com/2007/04/metadatamixin.html" rel="nofollow">http://nondocs.blogspot.com/2007/04/metadatamixin.html</a> and checked out the AutoQuick project. The latter is an example project by Adobe showing the use of the automation framework. In this project they are using the [mixin] tag (class AQAdapter).</p> <p>I followed the examples but my code is not working. The static init method is not called. I added the library to the compiler arguments list that didn't work either.</p> <p>How do I get this to work?</p> <pre><code>/* class to be automatically loaded */ package { /* includes */ [mixin] public class TestApp extends Sprite { /* additional members */ private static var mContainer:DisplayObjectContainer; private static var mInstance:TestApp; /** * @private */ public static function init(root:DisplayObject):void { if(!mInstance) { mContainer = root as DisplayObjectContainer; mContainer.addEventListener(FlexEvent.APPLICATION_COMPLETE, applicationCompleteHandler); } } } } </code></pre> http://stackoverflow.com/questions/1084572/mixing-multiple-traits-in-scala 1 Mixing Multiple Traits in Scala Daniel Ribeiro 2009-07-05T18:22:59Z 2009-07-06T06:14:03Z <p><em>Quick Note: Examples from <a href="http://www.codecommit.com/blog/scala/scala-for-java-refugees-part-5" rel="nofollow">this</a> tutorial.</em></p> <p>Suppose I have the following Traits: Student, Worker, Underpaid, Young</p> <p>How could I declare a class (<strong>not instance</strong>) CollegeStudent with all these traits?</p> <p><em>Note:</em> I am aware of the simplests cases, such as CollegeStudent with one or two Traits:</p> <pre><code>class CollegeStudent extends Student with Worker </code></pre> http://stackoverflow.com/questions/925609/mixins-vs-traits 2 Mixins vs. Traits KaptajnKold 2009-05-29T11:39:47Z 2009-06-28T08:35:32Z <p>What is the difference between Mixins and Traits?</p> <p><a href="http://en.wikipedia.org/wiki/Trait_(abstract_type)" rel="nofollow">According to Wikipedia</a>, Ruby Modules are sort of like traits. How so?</p> http://stackoverflow.com/questions/355633/what-are-some-good-examples-of-mixins-and-or-traits 6 What are some good examples of Mixins and or Traits? Robert Gould 2008-12-10T10:32:04Z 2009-06-26T04:54:17Z <p>I was reading up on Ruby, and learned about its mixins pattern, but couldn't think of many useful mixin functionality (because I'm not used to thinking that way most likely). So I was wondering what would be good examples of useful Mixin functionality?</p> <p>Thanks</p> <p>Edit: A bit of background. I'm Coming from C++, and other Object languages, but my doubt here is that Ruby says it's not inheriting mixins, but I keep seeing mixins as Multiple inheritance, so I fear I'm trying to categorize them too soon into my comfort zone, and not really grok what a mixin is.</p> http://stackoverflow.com/questions/1010349/would-extracting-page-metadata-be-a-good-use-of-multiple-inheritance 0 Would extracting page metadata be a good use of multiple inheritance? rick 2009-06-18T01:26:58Z 2009-06-19T05:38:16Z <p>I was wondering if I have a couple of models which both include fields like "meta_keywords" or "slug" which have to do with the web page the model instance will be displayed on, whether it would be advisable to break those page metadata elements out into their own class, say PageMeta, and have my other models subclass those via multiple inheritance?</p> http://stackoverflow.com/questions/906569/sythhesize-a-few-classes-using-different-combination-of-member-functions 0 Sythhesize a few classes using different combination of member functions abir 2009-05-25T12:36:49Z 2009-05-25T12:50:22Z <p>i am interested to synthesize a few classes which will have some/all of the functions as in the class res_obj.</p> <pre><code>struct res_obj { int* res_; res_obj() ///method 1 : no arg constructor : res_(0) { } explicit res_obj(int value) ///method 2 : single arg constructor : res_(new int(value)) { } res_obj(const res_obj&amp; rhs) : res_(new int(rhs.res_))///method 3 : copy constructor. { } res_obj(const move_object&lt;res_obj&gt;&amp; rhs) : res_(rhs.source.res_)///method 4: an in-house move constructor { rhs.source.res_ = 0; } void swap(res_obj&amp; other) ///method 5 : swap { std::swap(res_,other.res_); } }; </code></pre> <p>So far i have all of those functions as macros, in in my class i enable/disable them as required like</p> <pre><code>struct res_obj1 { ENABLE_SINGLE_ARG_CTOR(res_obj1) DISABLE_COPY_CTOR(res_obj1) }; </code></pre> <p>However, i am looking for a template based mixin where i can put those parts freely to construct new objects, using specialization, without repeating any implementation including constructors. For the constructors i can follow a pattern like <a href="http://www.codeproject.com/KB/tips/FakeTemplate.aspx" rel="nofollow">http://www.codeproject.com/KB/tips/FakeTemplate.aspx</a> and for enabling/disabling copy constructor the CRTP ideom, but having the same for swap etc and combining them together in a single solution is what i am looking for. The condition for the generated objects are that, they should not leave any members other than the one compiler understands as unimplemented. So, for an object with no copy will be generated as</p> <pre><code>struct res_nocopy { res_nocopy(const res_nocopy&amp; rhs);//either public or private }; </code></pre> <p>but for an object with no swap will be</p> <pre><code>struct res_noswap { }; </code></pre> <p>rather than,</p> <pre><code>struct res_noswap { swap(res_noswap&amp; rhs);//no implementation }; </code></pre> <p>as i need to detect existence of those functions automatically.</p> <p>i am interested to know if it is a possible to do using template specialization, and to what extent.</p> <p><hr /></p> <p>NOTE : </p> <ul> <li>intentionally omitted the assignment operator &amp; move assignment operator to make it simpler.</li> <li>have no restrictions on how the classes will be generated</li> <li>The generated class have only the single member variable res_ , and all of the generated classes will be used as value object.</li> </ul> http://stackoverflow.com/questions/901949/rails-how-to-override-stylesheetpath 0 Rails: How to override stylesheet_path Ivan 2009-05-23T17:13:13Z 2009-05-23T18:12:16Z <p>Hi,</p> <p>I've been trying to override Rails' <code>stylesheet_path</code> helper, but I haven't found a way how. I can't just open the <code>ActionView::Helpers::AssetTagHelper</code> module and override it there, because Rails won't pick up my new method.</p> <p>I know it's probably because the module gets mixed in, so how do I get around that?</p> http://stackoverflow.com/questions/825945/abstract-class-mixin-multiple-inheritance-in-python 1 Abstract class + mixin + multiple inheritance in python mluebke 2009-05-05T17:10:43Z 2009-05-05T17:57:32Z <p>So, I think the code probably explains what I'm trying to do better than I can in words, so here goes:</p> <pre><code>import abc class foo(object): __metaclass__ = abc.ABCMeta @abc.abstractmethod def bar(self): pass class bar_for_foo_mixin(object): def bar(self): print "This should satisfy the abstract method requirement" class myfoo(foo, bar_for_foo_mixin): def __init__(self): print "myfoo __init__ called" self.bar() obj = myfoo() </code></pre> <p>The result:</p> <pre><code>TypeError: Can't instantiate abstract class myfoo with abstract methods bar </code></pre> <p>I'm trying to get the mixin class to satisfy the requirements of the abstract/interface class. What am I missing?</p> http://stackoverflow.com/questions/807354/linfu-cant-quite-see-how-to-do-what-i-want 1 LinFu - can't quite see how to do what I want kpollock 2009-04-30T14:57:36Z 2009-05-01T08:29:07Z <p>Just found LinFu - looks very impressive, but I can't <em>quite</em> see how to do what I want to do - which is multiple inheritance by mixin (composition/delegation as I'd say in my VB5/6 days - when I had a tool to generate the tedious repetitive delegation code - it was whilst looking for a C# equivalent that I found LinFu).</p> <p>FURTHER EDIT: TO clarify what I mean by composition/delegation and mixin. </p> <pre><code>public class Person : NEOtherBase, IName, IAge { public Person() { } public Person(string name, int age) { Name = name; Age = age; } //Name "Mixin" - you'd need this code in any object that wanted to //use the NameObject to implement IName private NameObject _nameObj = new NameObject(); public string Name { get { return _nameObj.Name; } set { _nameObj.Name = value; } } //-------------------- //Age "Mixin" you'd need this code in any object that wanted to //use the AgeObject to implement IAge private AgeObject _ageObj = new AgeObject(); public int Age { get { return _ageObj.Age; } set { _ageObj.Age = value; } } //------------------ } public interface IName { string Name { get; set; } } public class NameObject : IName { public NameObject() {} public NameObject(string name) { _name = name; } private string _name; public string Name { get { return _name; } set { _name = value; } } } public interface IAge { int Age { get; set; } } public class AgeObject : IAge { public AgeObject() {} public AgeObject(int age) { _age = age; } private int _age; public int Age { get { return _age; } set { _age = value; } } } </code></pre> <p>Imagine objects with many more properties, used in many more "subclasses" and you start to see the tedium. A code-gernation tool would actually be just <em>fine</em>...</p> <p>So, LinFu.... The mixin example below is fine but I'd want to have an actual Person <em>class</em> (as above) - what's the LinFu-esque way of doing that? Or have I missed the whole point? </p> <p>EDIT: I need to be able to do this with classes that are already subclassed.</p> <pre><code>DynamicObject dynamic = new DynamicObject(); IPerson person = null; // This will return false bool isPerson = dynamic.LooksLike&lt;IPerson&gt;(); // Implement IPerson dynamic.MixWith(new HasAge(18)); dynamic.MixWith(new Nameable("Me")); // Now that it’s implemented, this // will be true isPerson = dynamic.LooksLike&lt;IPerson&gt;(); if (isPerson) person = dynamic.CreateDuck&lt;IPerson&gt;(); // This will return “Me” string name = person.Name; // This will return ‘18’ int age = person.Age; </code></pre> http://stackoverflow.com/questions/678131/windsor-mixin-is-a-singleton 0 Windsor MixIn is a Singleton? brumschlag 2009-03-24T16:16:43Z 2009-03-25T16:21:16Z <p>I have a MixIn that requires some state to operate.</p> <p>I am registering it as so..</p> <pre><code> container.Register(Component.For(Of ICat) _ .ImplementedBy(Of Cat) _ .LifeStyle.Transient _ .Proxy.MixIns(New MyMixin())) </code></pre> <p>When I call container.Resolve(of ICat), I get back a proxy for ICat, which also implements IMixin.</p> <p>However, if I call container.Resolve(of ICat) again, I get a new proxy for ICat, but MyMixin is the SAME instance. (Which makes sense because I didn't tell the container any way to create IMixin)</p> <p>So, IMixin is a Singleton, even though the Component's lifestyle is Transient.</p> <p>How can I tell Windsor, though the Fluent Interface, to create a new Instance of MyMixIn for the component? </p> http://stackoverflow.com/questions/591402/what-is-the-difference-between-an-abstract-class-and-a-mixin 2 What is the difference between an Abstract Class and a Mixin? leeand00 2009-02-26T16:48:12Z 2009-02-26T17:35:39Z <p>I just found an <a href="http://www.infoq.com/news/2008/11/Qi4j" rel="nofollow">article</a> on a framework in Java that apparently allows it to support <a href="http://en.wikipedia.org/wiki/Mixin" rel="nofollow">Mixins</a> and something called Composite Oriented Programming (which for all I know might even be the same thing...) I've also heard of/worked with AOP, and I'm not sure how it differs from this either...</p> http://stackoverflow.com/questions/577382/spring-introductions-with-dynamic-implementation 0 Spring introductions with dynamic implementation Stas 2009-02-23T11:48:16Z 2009-02-23T16:11:28Z <p>I am trying to use Spring framework to dynamically implement a specific interface (lets call it I) for a class (let call it C). In Spring this is called <em>introduction</em> (mixin in other languages). In compile time C doesn't implement I. Using the @DeclareParents annotation I can do it in AspectJ syntax. </p> <p>The problem is that the actual implementation of I (lets call it IImpl) is standalone (not dependent on the context) - I should only supply the IImpl class name in the annotation. What I want to achieve is the implementation that is stipulated in some way. For example, I would like to provide the IImpl instance with a parameter, say the enclosing C instance, so that the logic in IImpl would be different depending on what instance of C I am introducing. I need some way to set the dependecy between the IImpl instance and the introduced C instance.</p> <p>Currently I cannot find a way to do it. Any ideas?</p> <p>Thanks.</p> http://stackoverflow.com/questions/533631/what-is-a-mixin-and-why-are-they-useful 16 What is a Mixin, and why are they useful? Dan 2009-02-10T18:50:42Z 2009-02-18T15:49:46Z <p>In "Programming Python", Mark Lutz mentions "mixins". I'm from a C/C++/C# background, and I've not heard the term before. What is a mixin? </p> <p>Reading between the lines of <a href="http://tinyurl.com/actrjj" rel="nofollow">this example</a> (which I've linked to, 'cause it's quite long) I'm presuming it's a case of using multiple inheritance to extend a class as opposed to 'proper' subclassing. Is this right? Why would I want to do that rather than put the new functionality into a subclass? For that matter, why would a mixin/multiple inheritance approach be better than using composition?</p> <p><strong>Edit:</strong> Thank you for some really good answers, I've upvoted quite a few. I've not accepted a final answer yet, because although I feel I have a decent idea about what mixins can be used for, I'd really like to get my head around exactly what a mixin <em>is</em> - specifically, what separates a mixin from multiple inheritance? Is it just a matter of semantics?</p> http://stackoverflow.com/questions/543262/is-mixin-considered-a-design-pattern 5 Is mixin considered a design pattern? 4thSpace 2009-02-12T21:07:44Z 2009-02-12T22:07:02Z <p>Are mixins considered a design pattern? Structural?</p> http://stackoverflow.com/questions/510060/dojo-inheritance-with-default-value-the-mixin-doesnt-happen 0 dojo: inheritance with default value - the mixin doesn't happen... pierdeux 2009-02-04T04:24:42Z 2009-02-04T04:51:08Z <p>I wish to declare a new dojo class inheriting from an existing dojo class, but with my own choice of default values for the class's properties. (The user can still override those values.)</p> <p>I am declaring my own version of the <code>dijit.form.FilteringSelect</code> such that:</p> <ul> <li>the <code>hasDownArrow</code> property defaults to <code>false</code> (rather than the standard <code>true</code>) and</li> <li>there's an extra possible property <code>storeUrl</code> which allows me to connect the <code>FilteringSelect</code> to the corresponding <code>QueryReadStore</code>.</li> </ul> <p>Here's what I did, without success:</p> <pre><code>dojo.provide("my.FilteringSelect"); dojo.require("dijit.form.FilteringSelect"); dojo.require("dojox.data.QueryReadStore"); dojo.declare( "my.FilteringSelect", [ dijit.form.FilteringSelect, /* base superclass */ { hasDownArrow:false, storeUrl:"/" } /* mixin */ ], { constructor: function(params, srcNodeRef){ console.debug("Constructing my.FilteringSelect with storeUrl " + this.storeUrl); this.store = new dojox.data.QueryReadStore({url:this.storeUrl}); } } ); </code></pre> <p>Say, I try to generate declaratively in the HTML such a version of <code>my.FilteringSelect</code>:</p> <pre><code>&lt;input type="text" id="birthplace" name="birthplace" promptMessage="Start typing, and choose among the suggestions" storeUrl="/query/regions" dojoType="my.FilteringSelect" /&gt; </code></pre> <p>This will indeed create a <code>FilteringSelect</code> with the desired <code>promptMessage</code> (which means that the superclass is properly getting the params), but <code>hasDownArrow</code> is <code>true</code> (contrary to my default mixin) and the <code>store</code> is <code>null</code> (and the Firebug console reports that <code>storeUrl</code> is "<code>undefined</code>").</p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/355786/what-do-you-call-an-object-level-equivalent-of-mixin-traits-system-is-there-a-pa 0 What do you call an object level equivalent of Mixin/Traits system, is there a Pattern name for it? Robert Gould 2008-12-10T11:39:32Z 2008-12-10T12:29:33Z <p>I previously asked about what Mixins were, and have begun to get the gist of what the pattern means. But it got me wondering if there is a common pattern name for doing something like Mixins at an Object level as opposed to the Class level.</p> <p>Pseudo code (in some non existent language):</p> <pre><code> Class MyClass { function foo() { print("foo") } } function bar() { print("bar") } object = MyClass.new() object.xxxx(bar) object.bar() #output: bar </code></pre> <p>I know stuff like this can be done in several languages, in one way or another, but I'm wondering what would be the "standard" name for the functionality xxxx represents, and what is the name for this pattern, if there is one.</p> <p>Thanks!</p> <p>Edit: Expanding on finnsson's answer I guess something like this might be another case of this would be:</p> <pre><code> object.xxxx(OtherClass) object.otherfoo() </code></pre> <p>Would concatenate be appropriate?</p> <blockquote> <p>Quote: "Concatenation: Under pure prototyping, which is also referred to as concatenative prototypes..." -wikipedia</p> </blockquote> http://stackoverflow.com/questions/263121/java-traits-or-mixins-pattern 1 java traits or mixins pattern? joshjdevl 2008-11-04T19:36:04Z 2008-11-04T20:26:35Z <p>Is there a way to emulate mixins or traits in java? basically, I need a way to do multiple inheritance so I can add common business logic to several classes</p> http://stackoverflow.com/questions/255553/is-it-possible-to-implement-mixins-in-c 2 Is it possible to implement mixins in C#? Stewart Johnson 2008-11-01T05:14:33Z 2008-11-01T15:44:32Z <p>I've heard that it's possible with extension methods, but I can't quite figure it out myself. I'd like to see a specific example if possible.</p> <p>Thanks!</p>