annotate src/app/query-step.ts @ 47:b65a031c4967 ng2-final

first step to angular2-final (2.4) version of the query browser.
author casties
date Fri, 17 Mar 2017 20:16:52 +0100
parents app/query-step.ts@34cd764e234b
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
6cd6c09032aa object type query with results!
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 6
diff changeset
1 import {QueryMode} from './query-mode';
6cd6c09032aa object type query with results!
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents: 6
diff changeset
2
20
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
3 export class QueryStep {
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
4 public mode: QueryMode;
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
5
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
6 public params: any;
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
7
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
8 public resultInfo: string;
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
9
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
10 constructor (mode: QueryMode, params: any) {
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
11 this.mode = mode;
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
12 this.params = params;
34cd764e234b make interfaces into classes. factor out NormalizationService.
casties
parents: 7
diff changeset
13 }
5
b06a5d61afed new query state stuff.
Robert Casties <casties@mpiwg-berlin.mpg.de>
parents:
diff changeset
14 }