repo.or.cz
/
castle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Minor style changes
[castle.git]
/
MonoRail
/
Castle.MonoRail.Views.Brail
/
IDslLanguageExtension.cs
blob
f0e11b86de03b4ff6d82da2d9dc74b4637f66221
1
using
System
.
Collections
;
2
using
Boo
.
Lang
;
3
4
namespace
Castle
.
MonoRail
.
Views
.
Brail
5
{
6
public interface
IDslLanguageExtension
7
{
8
void
Tag
(
string
name
);
9
void
Tag
(
string
name
,
ICallable block
);
10
void
Tag
(
string
name
,
IDictionary attributes
,
ICallable block
);
11
12
void
Flush
();
13
}
14
}