The polymorphic tag has no wiki summary.
0
votes
1answer
40 views
polymorphic association with separate forms
I have one model, User, and then 2 other models: Editor and Administrator associated with the user model via a polymorphic association, so I want to have 2 type of users, and they will have different ...
0
votes
1answer
53 views
ForbiddenAttributesError for polymorphic model in Rails 4
Rails 4 ships with strong_parameters, which is a great addition - but I've run into a problem with it. I have a polymorphic model Comment and I cannot for the life of me get the controller to accept ...
0
votes
0answers
36 views
Laravel 4 many to many and polymorphic in one direction.
I'd like a relationship between a few models that is a many to many and polymorphic in one direction, this is how I've solved it for now but it really bothers me to have it this way, I loose all ...
0
votes
0answers
19 views
Rails: has_one association nullifying a has_many association on change
I'm new to Rails and I'm sure I may be doing something wrong conceptually, but I'm still struggling to find the root cause (and the solution).
I have a GamePlayer model
class GamePlayer < ...
0
votes
2answers
33 views
JPQL 2.0 - query entities based on superclass entity field
I have Entity (not MappedSuperclass) Person (with id, name, surname).
I also have Entity Employee extends Person (with other attributes, unimportant).
Inheritance Strategy is single table.
Now I want ...
0
votes
1answer
110 views
Polymorphic relationships with pivot table in Laravel?
I got 3 models, Article, Building, Person.
These models need to reference each other in a few ways. For example the building needs to be able to reference collections of Person like ...
8
votes
1answer
158 views
Haskell polymorphic calls without complete type knowledge
I'm studying Haskell since a little while, so I'm a newbie.
The following code is very easily understandable:
purStrLn $ show [1]
Here we can infer all the types (with defaults), and all works ...
0
votes
1answer
17 views
django polymorphic model, filter on subclass field
I have some models using django-polymorphic-model
eg.
class Article(PolymorphicModel):
...
class Blog(Article):
tags = ...
class Story(Article):
publish = ...
Normally if I get all articles, ...
0
votes
1answer
40 views
Polymorphic user model when using devise
I am building a job board and therefore have two user models and employer and an applicant.
I am using devise and therefore my challenge now is to use this with the polymorphic relationship.
Through ...
0
votes
1answer
34 views
Database design… how to represent polymorphic like types
In response to ZZ-bb I'll try to clarify although I think ZZ has answered the question pretty much (thank you ZZ-bb)...
I want to represent a clipboard contents in a database. The idea being a user ...
-2
votes
1answer
87 views
dynamic_cast causes segmentation violation in case of three level inheritance [closed]
It seems that dynamic_cast doesn't work in case of three-level inheritance.
The application crashes with Segmentation fault (core dumped) at the point of print() method invocation (in main()).
Here ...
1
vote
3answers
94 views
C++ Container of polymorphic objects with shared vptr
Suppose that I need to store a collection of objects of the same type, but this type can't be defined at compile time. Suppose also that once this type is defined, it never changes. As well known, ...
0
votes
0answers
59 views
subTree() method in a Polymorphic Binary Search Tree
So I'm going to try and phrase this in my best ability to avoid asking for straight up code.
I have a polymorphic binary search tree (a nonEmptyTree that has a emptyTree for each of its branches. All ...
1
vote
1answer
80 views
Polymorphic recursion in OCaml: return values
Continuing my series of questions regarding type-level arithmetic, I stumbled across another problem: return types of polymorphic recursive functions.
This is the code:
module Nat : sig
type z = Z
...
0
votes
0answers
39 views
Devise controller for models with polymorphic relationships
tl;dr:
the Devise::RegistrationsController doesn't instantiate associated polymorphic models, what's the best way to solve that?
setup:
I have an address model which I am associating with different ...
0
votes
1answer
43 views
significance of embedded_in in mongoid
I am trying to understand the relationships in mongoid and not able to move past the following:
class Band
include Mongoid::Document
embeds_many :photos
end
class Photo
include ...
0
votes
1answer
30 views
Sqlalchemy declarative STI polymorphic loader with unknown discriminator column
class Base(DBO):
__tablename__ = 't'
__mapper_args__ = {'polymorphic_on': 'typ'}
id = Column(Integer, primary_key=True)
typ = Column(String)
class ChildA(Base):
__mapper_args__ = ...
2
votes
4answers
184 views
Generating a list given the list length, an item, and filler items
First of all, sorry for the bad title, I really don't know what to call it. This is a question to one of my homework assignments:
"Write and test the definition of a (polymorphic) Haskell function ...
0
votes
1answer
55 views
Rails polymorphic association error
I'm having problems with a polymorphic association.
A quick explanation about my project. You can see it here: majorfinder.com On my app there will be majors, schools, and careers. I want to be ...
0
votes
0answers
30 views
Polymorphic or not
Read updates at bottom! I think I figured it out and thought I would share just in case someone wants to know this info.
I'm setting up a website that has quite a bit going on. It is a festival site ...
0
votes
2answers
218 views
Rails 3 ActiveRecord has_many polymorphic - Why isn't the id of the first object being saved for insertion into the join table?
Wise people,
Please help me troubleshoot my has_many polymorphic object creation problem.
I have a polymorphic has_many relationship between two objects with a join table in the middle. Acronyms ...
0
votes
1answer
34 views
How can I reference the same model twice and create the association in a multiple select form?
I have two classes (Game and Report) and want to link them with an additional attribute (default = yes or no).
The game should then have default_reports and optional_reports.
The association is then ...
1
vote
1answer
96 views
In sqlalchemy, how can I use polymorphic joined table inheritance when the child table has multiple foreign keys to the parent table?
I have a parent table called pbx_point that has a point_type column. I also have a child table called pbx_route, with a column called point_id pointing back to pbx_point.
I'd like to use sqlalchemy's ...
2
votes
1answer
148 views
self-modifying code algorithm
some programs generates the executable code at run-time.
i.e computer virus, packed binary.
this makes static analysis very difficult.
aside from packing algorithms, is there any general algorithm
...
1
vote
1answer
64 views
rails has_many manager
I'm attempting to create a polymorphic imaging system which would allow various objects to have a cover image and additional images. Would I be correct in creating an Image model with belongs_to ...
3
votes
1answer
89 views
Polymorphic signature of function as template argument (using lambdas)
I'm trying hard for some hours and didn't manage to get this working.
I have a templated class spinlock:
template<typename T> class spinlock {
// ...
volatile T *shared_memory;
};
I'm ...
4
votes
1answer
134 views
If compiler of Haskell always needs polymorphic parameters of polymorphic functions to be specified with “::Int”,why “show 2” is legal
If we type show 2,then we will get "2".But the question is show satisfies show :: Show a => a -> String,and 2 is polymorphic, if unfortunately show 2::Int differs from show 2::Integer we'd have ...
-1
votes
2answers
81 views
Exception in thread - java.util.InputMismatchException
I am trying to read in and sort strings and am getting an error. I modified the program as the 1st answer said and I get further in the run but it will not complete. I am a beginner so please be ...
0
votes
2answers
65 views
Java String Sorting Errors
I am trying to read in strings and sort them. I have received many errors, which are starred in the below code. Can you tell me how to fix those errors?
package hw05;
/*
Demonstrates selectionSort ...
1
vote
1answer
67 views
Very Advanced Method/Constructor (Java) - Accepting Real Polymorphic Arguments - Sintax
Is there any way to declare a polymorphic constructors? (please it is not overloading!).
I want to specify an argument that is isntanceof 1 class and 1 interface but I DONT WAN'T to create a new ...
0
votes
1answer
170 views
Polymorphic Sorting Conversion
I can't figure out how to correct the program. I have tried changing the Sorting.java program to public static void selectionSort (int[] intList), but that doesn't seem to fix it. Can someone help?
...
0
votes
1answer
81 views
SQLAlchemy and polymorphic inheritance with backrefs
I have the classes Node and Leaf (Node) as shown below: It works fine, but I'd prefer to shift the leafs and subleafs definitions to the Leaf (Node) class. How do I achieve that?
class Node ...
0
votes
1answer
73 views
How to index polymorphic table in rails with not unique “association_type” and “association_id”
I have a polymorphic table called "Votes", where has votes from Answers and Questions.
Votes
user_id voteable_id voteable_type value
1 2 Answer 1
...
0
votes
0answers
65 views
the difference between metamorphism and polimorphism [closed]
I would like to ask obviously what the difference between metamorphic and polymorphic cryptic algorithms.
0
votes
0answers
78 views
ActiveRecord dynamic :through source type with polymorphic association
I have already found some good discussions on through polymorphic associations. But I would like to find out more elegant solution.
I have the following ActiveRecord models.
class Question < ...
0
votes
1answer
43 views
When using polymorphic relationships in rails, I can't use underscores in my has_many attribute name (Rails)
My application uses a polymorhpic relationship like so:
class Child < ActiveRecord:Base
belongs_to :child_owner, polymorphic: true
end
class Parent < ActiveRecord:Base
has_many :children, ...
1
vote
1answer
143 views
F# list of “pointers” to methods of different but related classes
I am a F# newbie.
I have 2 classes, Base and Derived.
Base has a number of methods. Derived inherits some methods as they are and some it overrides. Derived class also introduced new methods.
I ...
0
votes
1answer
126 views
Get attribute of polymorphic parent before save, in Rails 3?
I have Vehicles, each can have many bookings. Each Booking can have many Events. This question comes as I validate a new Booking and Event against an existing Vehicle.
When validating the Event model ...
0
votes
0answers
24 views
Return a user's upcoming gigs (polymorphic relationship) in Rails 3
I've created a simply app in Rails 3, consisting of the following models: Users, Gigs, Attendances, using a polymorphic relationship (as it's likely there will be more than just Gigs that a user can ...
1
vote
1answer
94 views
Rails polymorphic association representing existing has_many models
I'd like to create a 'timeline' feature for an existing Card model. The Card already has_many Notes and has_many Attachments. I'd like to be able to:
access notes, attachments (and other models ...
1
vote
2answers
74 views
How do I achieve polymorphic relationships that reference a user?
First, I have a polymorphic association setup because comments can belong to any object(in my case post and articles).
I want to be able to say:
u = user.first
u.comments #This will list all ...
9
votes
1answer
324 views
Store polymorphic callbacks in Haskell
In advance, sorry for this long post.
I'm writing an event-driven application in Haskell, as such I need to store several callback functions for further use. I would like such callbacks to be:
...
8
votes
1answer
321 views
Haskell Polymorphic Tree Sum
I wrote the following code for handling a polymorphic binary tree in Haskell as a preperation for the functional programming exam next week:
data ITree t = Leaf | Node t (ITree t) (ITree t)
...
-1
votes
1answer
301 views
Rails Uninitialized Constant in polymorphic association
I am working on making a polymorphic association of a phone number to a volunteer (and later to other things), currently i am stuck with the following error:
uninitialized constant ...
3
votes
1answer
518 views
Can't mass-assign protected attributes when using accepts_nested_attributes_for and polymorphic
I've read through lots of posts here and still cant figure this one out.
I have a forum_post model and a links model. I want to nest the links form with the forum_post form but keep getting a Can't ...
0
votes
1answer
164 views
Polymorphic Association in Ruby on Rails
My attempt is to create a polymorphic association for models Items and Venues which have an association with Photos. I initially used Rails Best Practices - How do you design your model for multiple ...
0
votes
1answer
105 views
Mixing Self Referencial, Many to Many and Polymorphic Relations
I'm working on some app, I have User, Post and Report models so users can report other users, or posts. So I did this:
class Report < ActiveRecord::Base
belongs_to :user
belongs_to ...
5
votes
3answers
212 views
OCaml function over polymorphic variants not sufficiently polymorphic?
OCaml gives function `A -> 1 | _ -> 0 the type [> `A] -> int, but why isn't that [> ] -> int?
This is my reasoning:
function `B -> 0 has type [<`B] -> int. Adding a `A ...
1
vote
4answers
234 views
Jersey + Eclipse + Jetty : Serialization of polymorphic types results to a java.lang.NoSuchFieldError: EXTERNAL_PROPERTY exception on Ubuntu 12.04
I experience a very strange problem and I don't have found any help to resolve it. I'm developing an app using Jersey to provides RESTfull services that are accessed by a GWT website. Services produce ...
3
votes
2answers
205 views
Scala types: least upper bounds
I am trying to parameterize some methods with very general type parameters.
As an example, in the REPL I first define:
trait Term
case class FunctionalTerm[+T <: Term](t: T) extends Term
...

