Tagged Questions

0
votes
2answers
20 views

Limiting strict off VB.NET

Hi I am exploring ways to implement something Visitor Patterns alike without all the decorating visit methods. Sofar I found out I could use Option Strict Off in VB.NET but it has …
1
vote
2answers
102 views

Polymorphism (not) broken with visitor pattern in C# (and new instead of override)

I have the following code: class Visitor { internal virtual void Visit(Node n) { } } class VisitorSpecial : Visitor { internal new void Visit(Node n) { } } class Base …
1
vote
1answer
72 views

What are the following constructs in Mono.Cecil referring to in C#?

Can someone explain what are these referring to? MemberReference, TypeReference, ExternType, Override, NestedType, PInvokeInfo, SecurityDeclaration and CustomAttribute and MarshalS …
2
votes
1answer
132 views

Objective-C categories == visitor pattern?

Would you say that Objective-C categories are an implementation of the visitor design pattern?
4
votes
5answers
389 views

Alternative to the visitor pattern?

I am looking for an alternative to the visitor pattern. Let me just focus on a couple of pertinent aspects of the pattern, while skipping over unimportant details. I'll use a Shape …
1
vote
4answers
515 views

Visitor pattern implementation in java- How does this look?

Alrite, I am gonna jump straight to the code: public interface Visitor { public void visitInventory(); public void visitMaxCount(); public void visitCountry(); public void visit …
2
votes
1answer
117 views

Visitor Design Pattern in OCaml

I am attempting to implement the Visitor Design Pattern using OCaml's OO constructs and type system and am running into problems upon instantiation of an Element. class virtual [' …
0
votes
2answers
134 views

Visitor pattern and recursion

Is there any advantage for using visitor pattern in a recursive scenario? If so can you demonstrate it programmatically?
2
votes
3answers
179 views

Visitor Pattern, remove the need to cast

Hi there, i have a question regarding the visitor pattern, I currently have two assemblies. My first assembly contains several interfaces. public interface INode { void Visit …
1
vote
3answers
68 views

How should “location” info be passed in the visitor pattern?

Say I have a visitor like this class Visitor : IVisitor { void Accept(Visitable v) { /// other code v.AChild.Visit(this); v.BChild.Visit(this) …
1
vote
4answers
252 views

Why is the visitor responsible for enumerating children in the visitor pattern?

Based on the code I've found, it seems that the Visitor is required to known the structure of the visited objects and call on the needed children. This seems a bit clunky in some c …
0
votes
1answer
175 views

Emulate IDispatchEx in C#

C# 3.0 Extension methods add extensions to the base Type making calling that method on all instances of that Type legal. Now, JavaScript I know implements IDispatchEx through whic …