OOP_IO-2x_2023-mirror/lab5/Text.java

28 lines
740 B
Java
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import java.util.ArrayList;
public class Text {
// Поле що містить текст
private ArrayList<Sentence> sentences;
// Конструктор класу
public Text(ArrayList<Sentence> sentences){
this.sentences = sentences;
}
// Метод виводу текста
public void printText(){
for(Sentence i:sentences){
i.printSentence();
}
}
// Метод повернення довжини тексту
public int Lenght(){
return sentences.size();
}
// Метод зміни порядку слів у тексті
public void changeOrder(){
for(Sentence i: sentences){
i.ChangeOrder();
}
}
}