/usr/share/polygen/eng/designpatterns.grm is in polygen-data 1.0.6.ds2-13.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | I ::= "title: Object-oriented Design Patterns\n"
^ "author: Dimitri De Franciscis <megadix@yahoo.it>\n"
^ "language: english\n"
^ "status: refinable\n"
^ "topic: misc\n"
^ "audience: poor OO programmers\n"
^ "created: 26/03/2004"
;
S ::= Adjective Noun;
Adjective ::= "Business" | "Data Access" | "Fast Lane" | "Composite"
| "Front" | "Intercepting" | "Session" | "Transfer" | "Value List"
| "View" | "Half" | "Immutable" | "Dynamic" | "Virtual"
| "Model" | "Layered" | "Null" | "Template";
Noun ::= "Delegate" | "Abstract" | "Entity" | "View" | "Object" | "Reader"
| "Controller" | "Filter" | "Locator" | "Facade" | "Handler" | "Helper" | "Call" | "Interface" | "Proxy"
| "Builder" | "Method" | "Prototype" | "Singleton" | "Pool" | "Marker" | "Factory"
| "Bridge" | "Flyweight" | "Service" | "Adapter" | "Listener" | "Decorator"
| "Cache" | "Command" | "Strategy" | "Producer" | "Consumer";
|