001package ball.game.scrabble; 002/*- 003 * ########################################################################## 004 * Game Applications and Utilities 005 * %% 006 * Copyright (C) 2010 - 2022 Allen D. Ball 007 * %% 008 * Licensed under the Apache License, Version 2.0 (the "License"); 009 * you may not use this file except in compliance with the License. 010 * You may obtain a copy of the License at 011 * 012 * http://www.apache.org/licenses/LICENSE-2.0 013 * 014 * Unless required by applicable law or agreed to in writing, software 015 * distributed under the License is distributed on an "AS IS" BASIS, 016 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 017 * See the License for the specific language governing permissions and 018 * limitations under the License. 019 * ########################################################################## 020 */ 021import ball.game.scrabble.wordlist.OWL; 022import java.util.Collections; 023import java.util.Set; 024import lombok.NoArgsConstructor; 025import lombok.Getter; 026import lombok.Setter; 027 028/** 029 * Scrabble {@link Game}. 030 * 031 * {@bean.info} 032 * 033 * @author {@link.uri mailto:ball@hcf.dev Allen D. Ball} 034 */ 035@NoArgsConstructor @Getter @Setter 036public class Game { 037 private final Set<CharSequence> wordList = Collections.unmodifiableSet(new OWL().keySet()); 038 private final Board board = new Board(); 039 private final Bag bag = new Bag(); 040 041 @Override 042 public String toString() { return board.toString(); } 043}