2
votes
1answer
45 views
Problem with mixins in a MooseX::NonMoose class
Consider the following:
package MyApp::CGI;
use Moose;
use MooseX::NonMoose;
use Data::Dumper;
extends 'CGI::Application';
BEGIN {
print "begin isa = " . Dumper \@MyApp::C …
2
votes
3answers
226 views
Why does DataMapper use mixins vs inheritance?
So I'm just curious about this:
DataMapper uses a mixin for its Models
class Post
include DataMapper::Resource
While active-record uses inheritance
class Post < ActiveRec …
2
votes
9answers
821 views
Implement Mixin In Java?
Using Java 6, how can I implement a mixin? It is very easy and possible in Ruby. How can I get similar in Java?
3
votes
4answers
186 views
ruby inheritance vs mixins
In Ruby, since you can include multiple mixins but only extend one class, it seems like mixins would be preferred over inheritance.
My question: if you're writing code which must …
2
votes
4answers
725 views
Groovy Mixins?
I'm trying to mix-in a class in my Groovy/Grails app, and I'm using the syntax defined in the docs, but I keep getting an error.
I have a domain class that looks like this:
class …
3
votes
3answers
112 views
Objective-C category compared to Mixins
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?
3
votes
2answers
152 views
How do I write a hygienic Ruby mixin?
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 cla …
2
votes
4answers
275 views
Abstract classes vs. interfaces vs. mixins
Could someone please explain to me the differences between abstract classes, interfaces, and mixins? I've used each before in my code but I don't know the technical differences. (A …
0
votes
1answer
94 views
How to use the [mixin] tag in AS3 applications?
I have the following two projects in in Flex Builder 3:
One AS3 library project (generates a SWC file)
One Flex application project (MXML Application)
The MXML Application refe …
1
vote
2answers
236 views
Mixing Multiple Traits in Scala
Quick Note: Examples from this tutorial.
Suppose I have the following Traits: Student, Worker, Underpaid, Young
How could I declare a class (not instance) CollegeStudent with all …
2
votes
1answer
241 views
Mixins vs. Traits
What is the difference between Mixins and Traits?
According to Wikipedia, Ruby Modules are sort of like traits. How so?
6
votes
4answers
370 views
What are some good examples of Mixins and or Traits?
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 …
0
votes
1answer
61 views
Would extracting page metadata be a good use of multiple inheritance?
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, wh …
0
votes
0answers
63 views
Sythhesize a few classes using different combination of member functions
i am interested to synthesize a few classes which will have some/all of the functions as in the class res_obj.
struct res_obj
{
int* res_;
res_obj() ///method 1 : no arg c …
0
votes
1answer
78 views
Rails: How to override stylesheet_path
Hi,
I've been trying to override Rails' stylesheet_path helper, but I haven't found a way how. I can't just open the ActionView::Helpers::AssetTagHelper module and override it the …
