The concrete-inheritance tag has no wiki summary.
-3
votes
2answers
30 views
Concrete method in abstract class
I understand an abstract class may contain abstract and concrete methods (i.e with body implementation). My question are: can subclasses inherit/override concrete methods from an abstract superclass. ...
2
votes
3answers
110 views
Should I use Abstract or Interface … or start with Concrete class that should be extended?
I dont have enough of a grip on OO design to determine whether I am designing application well or not.
Here is a simple Idea:
I want to code a application for travelling on Metro.
I started of ...
3
votes
3answers
324 views
Symfony2, Propel fixtures and concrete inheritance
I got an issue with Propel fixtures loading in Symfony2. I have the following schema:
<table name="application" phpName="Application">
<column name="id" type="integer" required="true" ...
2
votes
1answer
659 views
SQLAlchemy Polymorphic Relationship with Concrete Inheritance
I am using the concrete table inheritance with SQLAlchemy. In declartive style model class, I have configured it successfully.
My code just like:
class Entry(AbstractConcreteBase, db.Model):
...
4
votes
1answer
503 views
Doctrine 2 Concrete Table Inheritance with Associations
I have read Doctrine 2 Inheritance Mapping with Association but say if you needed Animal to be an entity in its own right, say for creating option lists.
In this case the Discriminator Column for a ...
2
votes
2answers
407 views
Hibernate MappingException with inheritance of a concrete non-domain class in Grails
The Scenario
I have a need to represent an object in two different contexts. One context should not persist and the other should. The persistent objects are actual data pulled from another system. ...
2
votes
0answers
238 views
Doctrine Inheritance: find all children of a table
I have a question about Table Inheritance in Doctrine. for an example I'll use 3 tables:
Notification:
columns:
id
is_viewed
NotificationLike:
columns:
like_id
inheritance: { type: ...
26
votes
1answer
1k views
Different inheritance types in the same schema
I'm using Doctrine 1.2 on a symfony project,
and I'm considering mixing concrete and column aggregation inheritance types in my schema:
column aggregation lets me query in a parent table and get both ...
0
votes
1answer
203 views
How do I find a list of subclasses for a propel model with concrete inheritance
I'm building a mini-cms for my local charity (yes, I know I could use a floss project, but they want custom coded)
My propel schema currently looks as such:-
<?xml version="1.0" ...